Steven Burrows | a145e10 | 2017-06-16 13:37:50 -0400 | [diff] [blame] | 1 | import gulp from 'gulp'; |
| 2 | import * as Tasks from './gulp-tasks/'; |
| 3 | |
Simon Hunt | 5c3ed73 | 2017-07-20 19:03:28 +0000 | [diff] [blame] | 4 | gulp.task('build', ['bundle-css', 'bundle-vendor', 'bundle-js']); |
Steven Burrows | db3be6f | 2017-07-11 22:44:31 +0100 | [diff] [blame] | 5 | gulp.task('tests', ['test']); |
Steven Burrows | a145e10 | 2017-06-16 13:37:50 -0400 | [diff] [blame] | 6 | |
Simon Hunt | 5c3ed73 | 2017-07-20 19:03:28 +0000 | [diff] [blame] | 7 | gulp.task('default', function() { |
| 8 | // Do stuff |
| 9 | }); |