Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More

boost

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

boost

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


Version published
Weekly downloads
69
increased by11.29%
Maintainers
1
Weekly downloads
 
Created

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',
  }))
  .execute('./src');

FAQs

Package last updated on 02 Apr 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts