gulp-ccr-pipe

0.1.0 • Public • Published

gulp-ccr-pipe

Pipe stream generated from first child task to others. A cascading configurable gulp recipe for gulp-chef.

Install

$ npm install --save-dev gulp-chef gulp-ccr-pipe

Recipe

Pipe Streams

Ingredients

Type

Stream Processor

Usage

var gulp = require('gulp');
var chef = require('gulp-chef');
 
var meals = chef({
    'incremental-rebuilding': {
        src: 'js/',
        dest: 'js/',
        pipe: {
            '.cached': {
                plugin: 'gulp-cached',
                src: '*.js'
            },
            '.uglify': {
                plugin: 'gulp-uglify'
            },
            '.remember': {
                plugin: 'gulp-remember'
            },
            '.concat': {
                plugin: 'gulp-concat',
                options: 'app.js',
                spit: true
            }
        }
    }
});
 
gulp.registry(meals);

Package Sidebar

Install

npm i gulp-ccr-pipe

Weekly Downloads

0

Version

0.1.0

License

MIT

Last publish

Collaborators

  • amobiz