How to start Gulp watch task when I type npm start
问题 I have a gulp.js file that includes: gulp.task('default', ['watch']); Which starts up the watch task gulp.task('watch', function(){ gulp.watch(productionScripts, ['autoConcat']); }); Then on any saved changes to files in productionScripts, the watch task will concat the files. What I would like to do, is in my package.json, I would like to spool up this watch when I type npm start (this already starts my node server). package.json "start": "node server.js", UPDATE -------- Ben(b3nj4m.com), I