Jad
Jad
DDeno
Created by Jad on 3/28/2025 in #help
deno.json glob exports
This thread is resolved, thank you Deno discord for being my rubber duck
11 replies
DDeno
Created by Jad on 3/28/2025 in #help
deno.json glob exports
Just for extra reassurance, I also tested:
// main.ts
import * as tools from "./mod.ts";

tools.toolA1();
// main.ts
import * as tools from "./mod.ts";

tools.toolA1();
And it outputs the exact same JS file. I hope this is reassuring to the next person too!
11 replies
DDeno
Created by Jad on 3/28/2025 in #help
deno.json glob exports
All good then!
11 replies
DDeno
Created by Jad on 3/28/2025 in #help
deno.json glob exports
If I chmod +x transpile.ts and then run it: ./transpile.ts, I get the following js file:
const toolA1 = ()=>{
console.log("Tool 1");
};
toolA1();
const toolA1 = ()=>{
console.log("Tool 1");
};
toolA1();
11 replies
DDeno
Created by Jad on 3/28/2025 in #help
deno.json glob exports
Demonstration:
// a.ts
export 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");
};
// a.ts
export 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.ts
export const toolB1 = () => {
console.log("Tool B 1");
};
// b.ts
export const toolB1 = () => {
console.log("Tool B 1");
};
// mod.ts
export * from "./a.ts";
export * from "./b.ts";
// mod.ts
export * from "./a.ts";
export * from "./b.ts";
// main.ts
import { toolA1 } from "./mod.ts";

toolA1();
// main.ts
import { toolA1 } from "./mod.ts";

toolA1();
#!/usr/bin/env -S deno run --allow-read --allow-write --allow-net --allow-run --allow-env
// transpile.ts
import { 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");
#!/usr/bin/env -S deno run --allow-read --allow-write --allow-net --allow-run --allow-env
// transpile.ts
import { 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");
11 replies
DDeno
Created by Jad on 3/28/2025 in #help
deno.json glob exports
Well, no, no need to query sub-items specifically, tree-shaking is smart enough to tree-shake unused things.
11 replies
DDeno
Created by Jad on 3/28/2025 in #help
deno.json glob exports
My concern is bundling my entire toolbox (hundred of files) in client-side code when I only need some internal functions
11 replies
DDeno
Created by Jad on 3/28/2025 in #help
deno.json glob exports
I then have a subsequent question: if I import everything from a mod.ts that exports all the packages in my repo, does tree shaking still work?
11 replies
DDeno
Created by Jad on 3/28/2025 in #help
deno.json glob exports
It's not supported apparently
11 replies
DDeno
Created by Jad on 3/28/2025 in #help
deno.json glob exports
Found it after posting (I'd been looking for a while): https://github.com/denoland/deno/issues/26693
11 replies