1.0.2 • Published 8 years ago
metalsmith-buble v1.0.2
metalsmith-buble
Bublé plugin for Metalsmith
Installation
npm install metalsmith-bubleUsage
CLI
Add the metalsmith-buble field to your metalsmith.json.
{
"plugins": {
"metalsmith-buble": {
"transforms": {
"modules": false,
"dangerousForOf": true
},
"sourceMap": "inline"
}
}
}API
const Metalsmith = require('metalsmith');
const buble = require('metalsmith-buble');
new Metalsmith('./source')
.use(buble({
sourceMap: true
}))
.build((err, files) => {
if (err) {
throw err;
}
console.log('Completed.');
});Options
All Bublé options are available except for file and source that will be automatically set.
In addition the following option is supported:
options.sourceMap
Value: true, false or 'inline'
Default: false
truegenerates a separate source map file with.mapextension, for exmaplescript.js.mapalong withscript.js.'inline'appends an inline source map to the transformed file.
License
ISC License © 2017 Shinnosuke Watanabe