blob: 27058721c4733f7fe97f0eee908fb7747c65b70e [file] [log] [blame]
Steven Burrowsa145e102017-06-16 13:37:50 -04001import gulp from 'gulp';
2import * as Tasks from './gulp-tasks/';
3
Steven Burrows1c2a9682017-07-14 16:52:46 +01004gulp.task('build', ['bundle-css', 'bundle-js']);
Steven Burrowsdb3be6f2017-07-11 22:44:31 +01005gulp.task('tests', ['test']);
Steven Burrowsa145e102017-06-16 13:37:50 -04006
Steven Burrows1c2a9682017-07-14 16:52:46 +01007gulp.task('default', []);
8
9// TODO: Uncomment once npm and buck issues are resolved.
10// gulp.task('default', ['bundle-js', 'serve', 'watch-js']);