gulpdest
A wrapper around gulp.dest to make recycling patterns easier
Usage
gulp.dest
writes input stream to a destination. GulpDest
does the
same but returns a GulpGlob
object, making it easy to work with the new files (see package gulpglob).
;; const dest = 'build';const glob = 'src/**/*.js';const stream = gulp; const gg = dest; // Writes stream to 'build' and returns a GulpGlob objectgg; // Lists the new filesgg; // Sources the new files
License
gulpdest is MIT licensed.
© 2016-2017 Jason Lenoble