Gulp.js: The streaming build system
gulpjs.com
Gulp.js: The streaming build system
1–10 of 53 posts
Re: Gulp.js: The streaming build system
#2Re: Gulp.js: The streaming build system
#3Re: Gulp.js: The streaming build system
#4Re: Gulp.js: The streaming build system
#5I've been using Gulp for a couple of months now, it's great! It's like Grunt, but faster, and the tasks are written in code, not a giant JSON config file.
For instance, I wrote a custom tag to modify specific pages to inject javascript include statements in HTML pages. There is probably a plugin for that, but I was able to write the code in 15 minutes so I didn't care.
Re: Gulp.js: The streaming build system
#6I encourage people to use webpack for any kind of js building unless you're using browserfy, but you can use browserfy with straight up gulp. You could also replace browserfy with webpack. Webpack will build your require.js (and your commonjs) without need for almond.js if you're making single builds. Setting up require.js with grunt was a nightmare, and a cinch with gulp + webpack. Like it took me an entire day in the past with grunt, and like 5 minutes with gulp and webpack.
Re: Gulp.js: The streaming build system
#7I've been using Gulp for a couple of months now, it's great! It's like Grunt, but faster, and the tasks are written in code, not a giant JSON config file.
Re: Gulp.js: The streaming build system
#8I've been using Gulp for a couple of months now, it's great! It's like Grunt, but faster, and the tasks are written in code, not a giant JSON config file.