v11.0.0
·
110 commits
to master
since this release
This is a big build.
-
New bundle output to handle circular dependencies across bundle splits. This is the biggest change in this release. We moved from browser-pack to a custom bundler.
-
Added ability to bundle different types of input by specifying different forms of inputs in the
srcarray. For example, you can specify a string (glob) as well as object withcontent,path,namethat get resolved as modules by bit-bundler. In the example below "src/*.js" is a glob that gets expanded, thencontentis also bundle following all the module resolution/processing pipelines all other modules go through, and lastlynameis resolved as a module name by bit-bundler allowing bundling of items innode_modulesmore easily.
Bitbundler.bundle({
src: [
"src/*.js",
{ content: "require('path');" },
{ name: "belty" }
]
})- And other cleanup and bug minor bug fixes.