0.6.5 • Published 6 years ago

gulpdest v0.6.5

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

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

6 years ago

0.6.4

6 years ago

0.6.3

6 years ago

0.6.2

6 years ago

0.6.1

6 years ago

0.6.0

6 years ago

0.5.1

6 years ago

0.5.0

7 years ago

0.4.0

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.7

7 years ago

0.1.6

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago