0.1.0 • Published 8 years ago

gulp-ccr-concat v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

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

Stream Processor

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