0.6.5 • Published 8 years ago
gulpdest v0.6.5
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).
import GulpDest from 'gulpdest';
import gulp from 'gulp';
const dest = new GulpDest('build');
const glob = 'src/**/*.js';
const stream = gulp.src(glob, {base: process.cwd()});
const gg = dest.dest(stream, {glob}); // Writes stream to 'build' and returns a GulpGlob object
gg.list(); // Lists the new files
gg.src(); // Sources the new files
License
gulpdest is MIT licensed.
© 2016-2017 Jason Lenoble
0.6.5
8 years ago
0.6.4
8 years ago
0.6.3
8 years ago
0.6.2
8 years ago
0.6.1
8 years ago
0.6.0
8 years ago
0.5.1
8 years ago
0.5.0
8 years ago
0.4.0
8 years ago
0.3.1
8 years ago
0.3.0
8 years ago
0.2.0
8 years ago
0.1.7
8 years ago
0.1.6
8 years ago
0.1.5
8 years ago
0.1.4
8 years ago
0.1.3
9 years ago
0.1.2
9 years ago
0.1.1
9 years ago