Skip to content

Instantly share code, notes, and snippets.

@dblotsky
Created July 24, 2015 07:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dblotsky/d386839bce502b76be07 to your computer and use it in GitHub Desktop.
Save dblotsky/d386839bce502b76be07 to your computer and use it in GitHub Desktop.
The reasons I hate Gulp.
gulp.task("clean", function () {
return gulp.src("dist/*").pipe(rm());
});
gulp.task("config", function() {
spawn("python", ["gen_config.py"])
.stdout
.pipe(stream("config.yml"))
.pipe(buffer())
.pipe(gulp.dest("."));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment