deno.json glob exports
I am using a monorepo with multiple projects.
I would like to use specific files from package
@namespace/toolbox
in package @namespace/project
.
In package toolbox
, I have the following deno.jsonc
:
In project project
, I can do:
No problem.
but I am unable to do:
I can make it work with the following jsonc:
But this is a project with many files, and I would rather not list them individually.
What am I doing wrong?
PS: I wasn't sure which tag matches better with my question; I didn't find "publishing". There's an "npm publishing" tag, but that doesn't fit my case, I am not publishing any of these packages, they're only for internal usage2 Replies
Found it after posting (I'd been looking for a while): https://github.com/denoland/deno/issues/26693
GitHub
Deno fails when a package in a monorepo uses a
./*
export · Issu...Deno version $ deno --version deno 2.0.4 (stable, release, x86_64-unknown-linux-gnu) v8 12.9.202.13-rusty typescript 5.6.2 To demonstrate the issue I created the following mono-repo $ tree . ├── a ...
It's not supported apparently
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?
My concern is bundling my entire toolbox (hundred of files) in client-side code when I only need some internal functions
Well, no, no need to query sub-items specifically, tree-shaking is smart enough to tree-shake unused things.
Demonstration:
If I chmod +x transpile.ts
and then run it: ./transpile.ts
, I get the following js file:
All good then!
Just for extra reassurance, I also tested:
And it outputs the exact same JS file. I hope this is reassuring to the next person too!
This thread is resolved, thank you Deno discord for being my rubber duck