v9.1.0
Introduced ability to bundle contents. This helps create bundle for more routine work where bundling a string or a buffer is really useful.
const Bitbundler = require("bit-bundler");
Bitbundler.bundle({
dest: "dist/out.js",
contents: `
const hello = require("./src/hello");
const world = require("./src/world");
console.log(hello() + " + " + world());
`
});