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 | |
Steven Burrows | 1c2a968 | 2017-07-14 16:52:46 +0100 | [diff] [blame] | 4 | gulp.task('build', ['bundle-css', '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 | |
Steven Burrows | 1c2a968 | 2017-07-14 16:52:46 +0100 | [diff] [blame] | 7 | gulp.task('default', []); |
| 8 | |
| 9 | // TODO: Uncomment once npm and buck issues are resolved. |
| 10 | // gulp.task('default', ['bundle-js', 'serve', 'watch-js']); |