// main.tsimport * as tools from "./mod.ts";tools.toolA1();
chmod +x transpile.ts
./transpile.ts
const toolA1 = ()=>{ console.log("Tool 1");};toolA1();
// a.tsexport const toolA1 = () => { console.log("Tool 1");};export const toolA2 = () => { console.log("Tool A 2");};export const unusedFunctionA = () => { console.log("This will be tree-shaken A");};
// b.tsexport const toolB1 = () => { console.log("Tool B 1");};
// mod.tsexport * from "./a.ts";export * from "./b.ts";
// main.tsimport { toolA1 } from "./mod.ts";toolA1();
#!/usr/bin/env -S deno run --allow-read --allow-write --allow-net --allow-run --allow-env// transpile.tsimport { bundle } from "jsr:@deno/emit@0.46.0";export const typescriptBundleAndWrite = async ( filePath: string | URL, outFile: string | URL,) => { const { code } = await bundle(filePath); await Deno.writeTextFile(outFile, code);};typescriptBundleAndWrite("./main.ts", "./main.js");
mod.ts