Code Monkey home page Code Monkey logo

gulp-firstline-filter's Introduction

gulp-firstline-filter

Filter files by first line in a gulp stream Enables you to work on a subset of the original files by filtering them using glob patterns. When you're done and want all the original files back you just use the restore stream.

Install

$ npm install --save-dev gulp-firstline-filter

Usage

Filter only

You may want to just filter the stream content:

const gulp = require('gulp');
const babel = require('gulp-babel');
const filter = require('gulp-firstline-filter');

gulp.task('default', () => {
	// Create filter instance inside task function
	const f = filter(/es6/);

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

Restoring filtered files

const gulp = require('gulp');
const babel = require('gulp-babel');
const filter = require('gulp-firstline-filter');

gulp.task('default', () => {
	// Create filter instance inside task function
	const f = filter(/es6/, {restore: true});

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

using functions

const gulp = require('gulp');
const babel = require('gulp-babel');
const filter = require('gulp-firstline-filter');

gulp.task('default', () => {
	// Create filter instance inside task function
	const f = filter((firstline) => !(/es6/.test(firstline)), {restore: true});

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

API

filter(pattern, [options])

Returns a transform stream with a .restore property.

pattern

Type: RegExp Function

Accepts a RegExp or function

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(firstline => /unicorns/.test(firstline));

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.

gulp-firstline-filter's People

Contributors

shuvava avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.