Skip to content

Instantly share code, notes, and snippets.

@stringparser
Created September 19, 2014 15:45
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 stringparser/1242d6ea95c9ece80f93 to your computer and use it in GitHub Desktop.
Save stringparser/1242d6ea95c9ece80f93 to your computer and use it in GitHub Desktop.
dumb gulp@4.0 file
'use strict';
var gulp = require('./.');
gulp.task('js', function(done){
done();
});
gulp.task(function jsx(done){
done();
});
gulp.task(function minify(done){
done();
});
gulp.task('css:pipeline', function(done){
done();
});
gulp.task('js:pipeline', gulp.series('jsx', 'js', 'minify'));
gulp.task('default', gulp.parallel('js:pipeline','css:pipeline'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment