Autorun Gulp task 'watch' on Webstorm launch -
Autorun Gulp task 'watch' on Webstorm launch -
is there way run gulp task on webstorm launch?
tried looking through webstorm settings don't see anything, gulp integration brand new webstorm 9.
gulp.task('watch', function () { gulp.watch(paths.watch.css, function(){ compileless(paths.src.css, paths.dest.css, {name: 'style'}) }); gulp.watch(paths.watch.cssbootstrap, function(){ compileless(paths.src.cssbootstrap ,paths.dest.cssbootstrap, {suffix: '.min', name: 'bootstrap'}) }); gulp.watch(paths.watch.scripts, ['scripts']); gulp.watch(paths.watch.libraries, ['libraries']); }); just want way run gulp 'watch' (if project has gulp , task called watch) when ever start webstorm.
no:( webstorm (as other jetbrains ides) doesn't back upwards 'on launch' actions - see https://youtrack.jetbrains.com/issue/web-11818#comment=27-787220
gulp webstorm
Comments
Post a Comment