gulp-filter <gulp插件>

概念

gulp.filter可以虚拟文件流中过滤特定的文件,可以当做是gulp.src的二次过滤,并且还可以restore操作恢复过滤前的gulp.src一次过滤的虚拟文件流。

安装

$ npm install –save-dev gulp-filter

使用

1.只过滤文件
You may want to just filter the stream content:

const gulp = require('gulp');
const uglify = require('gulp-uglify');
const filter = require('gulp-filter');

gulp.task('default', () => {
    // Create filter instance inside task function
    const f = filter(['**', '!*src/vendor']);

    return gulp.src('src/**/*.js')
        // Filter a subset of the files
        .pipe(f)
        // Run them through a plugin
        .pipe(uglify())
        .pipe(gulp.dest('dist'));
});

2.过滤文件,并恢复文件流

const gulp = require('gulp');
const uglify = require('gulp-uglify');
const filter = require('gulp-filter');

gulp.task('default', () => {
    // Create filter instance inside task function
    const f = filter(['**', '!*src/vendor'], {restore: true});

    return gulp.src('src/**/*.js')
        // Filter a subset of the files
        .pipe(f)
        // Run them through a plugin
        .pipe(uglify())
        // Bring back the previously filtered out files (optional)
        .pipe(f.restore)
        .pipe(gulp.dest('dist'));
});

3.多个过滤
By combining and restoring different filters you can process different sets of files with a single pipeline.

const gulp = require('gulp');
const less = require('gulp-less');
const concat = require('gulp-concat');
const filter = require('gulp-filter');

gulp.task('default', () => {
    const jsFilter = filter('**/*.js', {restore: true});
    const lessFilter = filter('**/*.less', {restore: true});

    return gulp.src('assets/**')
        .pipe(jsFilter)
        .pipe(concat('bundle.js'))
        .pipe(jsFilter.restore)
        .pipe(lessFilter)
        .pipe(less())
        .pipe(lessFilter.restore)
        .pipe(gulp.dest('out/'));
});

4.恢复成一个文件
You can restore filtered files in a different place and use it as a standalone source of files (ReadableStream). Setting the passthrough option to false allows you to do so.

const gulp = require('gulp');
const uglify = require('gulp-uglify');
const filter = require('gulp-filter');

gulp.task('default', () => {
    const f = filter(['**', '!*src/vendor'], {restore: true, passthrough: false});

    const stream = gulp.src('src/**/*.js')
        // Filter a subset of the files
        .pipe(f)
        // Run them through a plugin
        .pipe(uglify())
        .pipe(gulp.dest('dist'));

    // Use filtered files as a gulp file source
    f.restore.pipe(gulp.dest('vendor-dist'));

    return stream;
});

参数:

filter(pattern, [options])
Returns a transform stream with a .restore property.

1.pattern
Type: string Array Function

Accepts a string/array with globbing patterns which are run through multimatch.
If you supply a function, you’ll get a vinyl file object as the first argument and you’re expected to return a boolean of whether to include the file:
filter(file => /unicorns/.test(file.path));

2.options
Type: Object
Accepts minimatch options.
Note: Set dot: true if you need to match files prefixed with a dot (e.g. .gitignore).

restore
Type: boolean
Default: false
Restore filtered files.

passthrough
Type: boolean
Default: true

When set to true, filtered files are restored with a PassThrough stream, otherwise, when set to false, filtered files are restored as a ReadableStream.
When the stream is a ReadableStream, it ends by itself, but when it’s PassThrough, you are responsible of ending the stream.

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值