1.2.0 • Published 4 months ago
bare-bundle-compile v1.2.0
bare-bundle-compile
Compile a bundle of CommonJS modules to a single module.
npm i bare-bundle-compile
Usage
const Bundle = require('bare-bundle')
const compile = require('bare-bundle-compile')
const bundle = new Bundle()
.write('/foo.js', "module.exports = require('./bar')", {
main: true,
imports: {
'./bar': '/bar.js'
}
})
.write('/bar.js', 'module.exports = 42')
eval(compile(bundle)).exports
// 42
API
const code = compile(bundle)
License
Apache-2.0