import Bundler from "./mod.ts";
const results = await Bundler();
for await(const file of results.outputFiles)
{
console.log(file.text);
}