blob: 7c5056db8f9ee2fdf2f80433b75eee457e6929ce [file] [log] [blame]
Steven Burrowsa145e102017-06-16 13:37:50 -04001import gulp from 'gulp';
2import * as Tasks from './gulp-tasks/';
3
Simon Hunt5c3ed732017-07-20 19:03:28 +00004gulp.task('build', ['bundle-css', 'bundle-vendor', 'bundle-js']);
Steven Burrowsdb3be6f2017-07-11 22:44:31 +01005gulp.task('tests', ['test']);
Steven Burrowsa145e102017-06-16 13:37:50 -04006
Simon Hunt5c3ed732017-07-20 19:03:28 +00007gulp.task('default', function() {
8 // Do stuff
9});