JSPM

gulp-ccr-pipe

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q21654F
  • License MIT

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

Package Exports

  • gulp-ccr-pipe

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-ccr-pipe) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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);