Package Exports
- gulp-ccr-concat
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-concat) 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-concat
Concatenates streams. A cascading configurable gulp recipe for gulp-chef.
Install
$ npm install --save-dev gulp-chef gulp-ccr-concat
Recipe
Serial Join (from gulp.js cheatsheet p.2)
Ingredients
Type
API
config.file
Give concatenated stream a new file name.
config.spit
Optional. Whether to write out file or not. Useful when piping stream for further processing. Default is true.
Usage
var gulp = require('gulp');
var chef = require('gulp-chef');
var meals = chef({
src: 'src/',
dest: 'dist/',
concat: {
src: '**/*.js',
file: 'bundle.js'
}
});
gulp.registry(meals);