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
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');Lifecycle
app
-> define command
-> add metadata
-> add routines
-> run command
-> init tool
-> load configuration
-> load plugins
-> load UI
-> init pipeline
-> set tool
-> set routines
-> configure routines
-> run pipeline