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
deno deploy executes this package with the user's workspace config
applied, so the CLI's static import of @deno/sandbox let a workspace
member named @deno/sandbox be linked into the CLI's own module graph
(crashing the CLI) or emit a "workspace member was not used" warning
on every command.
* import @deno/sandbox only via a dynamic import in sandbox/api.ts,
executed when a sandbox command actually runs
* remaining references are import type, erased at runtime
* adds a regression test asserting no first-party module has a static
code edge to @deno/sandbox
Root cause tracked upstream in denoland/deno#35730.
0 commit comments