JSPM

gulp-ccr-parallel

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

Run sub tasks in parallel, without waiting until the previous task has completed. A cascading configurable gulp recipe for gulp-chef.

Package Exports

  • gulp-ccr-parallel

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

Run sub tasks in parallel, without waiting until the previous task has completed. A cascading configurable gulp recipe for gulp-chef.

Install

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

Recipe

Parallel Tasking

Ingredients

Type

Flow Controller

Usage

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

var meals = chef({
    src: 'src/',
    dest: 'dist/',
    parallel: {
        browserify: {
            bundle: {
                entry: 'index.js',
                file: 'bundle.js'
            }
        },
        styles: {
            src: '**/*.less',
            plugin: 'gulp-less',
            spit: true
        }
    }
});

gulp.registry(meals);