metalsmith-buble
v1.0.2
Published
Bublé plugin for Metalsmith
Downloads
16
Maintainers
Readme
metalsmith-buble
Bublé plugin for Metalsmith
Installation
npm install metalsmith-buble
Usage
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
true
generates a separate source map file with.map
extension, for exmaplescript.js.map
along withscript.js
.'inline'
appends an inline source map to the transformed file.
License
ISC License © 2017 Shinnosuke Watanabe