bare-bundle-compile

1.2.0 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i bare-bundle-compile

Weekly Downloads

138

Version

1.2.0

License

Apache-2.0

Unpacked Size

16.9 kB

Total Files

4

Last publish

Collaborators

  • mafintosh
  • kasperisager