You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a monorepo with one root "deno.json" that includes: "workspace": [ "./packages/server", "./packages/installer-updater" ],
For test purpose, in the workspace "installer-updater" i have zero dependencies.
Only one statement console.log('Deno is incredible') in the main file.
Then i build one single executable for the workspace "installer-updater" via:
"deno compile --allow-all --output=./build/installer-updater --node-modules-dir=none ./src/program.ts"
The compiled size of executable is now over 100mb.
Then i remove other workspaces in the root "deno.json" file or with the additon "--no config" in the deno compile statement, everything looks correct.
Is this the desired behaviour?
Version: Deno 2.1.1
The text was updated successfully, but these errors were encountered:
Hello,
I have a monorepo with one root "deno.json" that includes:
"workspace": [ "./packages/server", "./packages/installer-updater" ],
For test purpose, in the workspace "installer-updater" i have zero dependencies.
Only one statement
console.log('Deno is incredible')
in the main file.Then i build one single executable for the workspace "installer-updater" via:
"deno compile --allow-all --output=./build/installer-updater --node-modules-dir=none ./src/program.ts"
The compiled size of executable is now over 100mb.
Then i remove other workspaces in the root "deno.json" file or with the additon "--no config" in the deno compile statement, everything looks correct.
Is this the desired behaviour?
Version: Deno 2.1.1
The text was updated successfully, but these errors were encountered: