Quick Intro to Gulp.JS(codefellows.org)
codefellows.org
Quick Intro to Gulp.JS
https://www.codefellows.org/blogs/quick-intro-to-gulp-js
2 comments
Terser code, faster build times [1]. May make some non-build tasks harder.
[1]:https://twitter.com/andytjoslin/statuses/416424985662468097
[1]:https://twitter.com/andytjoslin/statuses/416424985662468097
short answer, yes.
This is obviously a short introduction to Gulp. The same setup using Grunt is at least 50+ lines of extra code. Plus when you start getting into full deployment you're going to be writing significant amount less code with Gulp which in the long run makes it more maintainable.
This is obviously a short introduction to Gulp. The same setup using Grunt is at least 50+ lines of extra code. Plus when you start getting into full deployment you're going to be writing significant amount less code with Gulp which in the long run makes it more maintainable.
gulp.run is deprecated in 3.5 and will be removed eventually.
You can see the new gulp.watch syntax here.
https://github.com/gulpjs/gulp/blob/master/docs/API.md#gulpw...
https://github.com/gulpjs/gulp/blob/master/docs/API.md#gulpw...
From an api standpoint, this doesn't seem that much simpler.