2018-01-16 11:11:46 -05:00

16 lines
263 B
JavaScript

import {startServer} from '../server';
import {scripts} from './scripts';
import {styles} from './styles';
import {views} from './views';
import {root} from './root';
const tasks = {
startServer,
scripts,
styles,
views,
root,
};
export default tasks;