JSPM

gulp-ccr-queue

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

Pipe queued streams progressively. A cascading configurable gulp recipe for gulp-chef.

Package Exports

  • gulp-ccr-queue

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

Pipe queued streams progressively. A cascading configurable gulp recipe for gulp-chef.

Install

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

Recipe

Serial Join (from gulp-cheatsheet p.2)

Ingredients

Type

Stream Processor

Usage

var gulp = require('gulp');
var chef = require('gulp-chef');

var meals = chef({
    'serial-join': {
        src: 'css/',
        dest: 'css/',
        pipe: {
            queue: {
                '.less': {
                    plugin: 'gulp-less',
                    src: 'first.less'
                },
                pipe: {
                    src: 'second.css',
                    '.cssimport': {
                        plugin: 'gulp-cssimport'
                    },
                    '.autoprefixer': {
                        plugin: 'gulp-autoprefixer',
                        options: 'last 2 versions'
                    }
                }
            },
            '.concat': {
                plugin: 'gulp-concat',
                options: 'app.css'
            },
            '.minify': {
                plugin: 'gulp-minify-css',
                spit: true
            }
        }
    }
});

gulp.registry(meals);