JSPM

  • Created
  • Published
  • Downloads 128
  • Score
    100M100P100Q45673F
  • License MIT

Robust pipeline for creating build tools that separate logic into routines and tasks.

Package Exports

  • boost

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 (boost) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Boost v0.0.0

Build Status

Robust pipeline for creating build tools that separate logic into routines and tasks.

Example

If Babel + Babili was created using this library, the implementation would look something like the following.

(new Pipeline('babel', require('./.babelrc')))
  .pipe(new LocateRoutine('locate'))        // Glob initial files
  .pipe(new ResolveRoutine('resolve'))      // Resolve dependency lookups
  .pipe(new TransformRoutine('transform'))  // Apply transformations
  .pipe(new MinifyRoutine('minify'))        // Apply minification
  .pipe(new BundleRoutine('bundle', {       // Bundle and or output the files
    out: './lib',
  }))
  .run('./src');