Package Exports
- gulp-ccr-merge
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-merge) 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-merge
Merge multiple streams into one interleaved stream. A cascading configurable gulp recipe for gulp-chef.
Install
$ npm install --save-dev gulp-chef gulp-ccr-merge
Recipe
Async Streams (from gulp-cheatsheet p.2)
Ingredients
Type
Usage
var gulp = require('gulp');
var chef = require('gulp-chef');
var meals = chef({
'async-streams': {
src: 'css/',
dest: 'css/',
merge: {
'.less': {
plugin: 'gulp-less',
src: 'first.less'
},
'.autoprefixer': {
plugin: 'gulp-autoprefixer',
src: 'second.css'
}
}
},
});
gulp.registry(meals);