sigh-babel
v0.12.3
Published
Sigh plugin to compile many babel files in parallel using many CPUs/processes.
Downloads
30
Maintainers
Readme
sigh-babel
Sigh plugin for transpiling files with babel6 over multiple CPUs/processes.
Usage
Create a pipeline that transpiles the given source files using babel:
module.exports = function(pipelines) {
pipelines['js'] = [
glob('*.js'),
babel({ presets: ['es2015-loose'], plugins: ['transform-es2015-modules-amd'] }),
write('build')
]
}
babel 5
You will need to use sigh-babel verson 0.11.x and below for babel 5 support.
npm install [email protected]