The streaming build system
The streaming build system
For a Getting started guide, API docs, recipes, making a plugin, etc. check out or docs!
gulpfile.jsThis file will give you a taste of what gulp does.
var gulp = ;var coffee = ;var concat = ;var uglify = ;var imagemin = ;var sourcemaps = ;var del = ; var paths = scripts: 'client/js/**/*.coffee' '!client/external/**/*.coffee' images: 'client/img/**/*'; // Not all tasks need to use streams // A gulpfile is just another node program and you can use any package available on npm gulp; gulp; // Copy all static images gulp; // Rerun the task when a file changes gulp; // The default task (called when you run `gulp` from cli) gulp;We recommend these plugins:
Anyone can help make this project better - check out our Contributing guide!