blob: 51aead1569825a07da294c4ca00072127b95aafa [file] [log] [blame]
Steven Burrowsa145e102017-06-16 13:37:50 -04001import gulp from 'gulp';
2import * as Tasks from './gulp-tasks/';
3
Steven Burrows91458672017-08-16 11:53:38 +01004gulp.task('build', ['bower', 'bundle-css', 'bundle-js']);
5gulp.task('tests', ['bower', 'test']);
Steven Burrows1270c182017-09-14 10:14:58 +01006gulp.task('default', ['bundle-js', 'bundle-css', 'serve', 'watch-js', 'watch-css']);