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
root
|- foo
|- mod.ts ← NB: import reference to ../bar/mod.ts
|- bar
|- mod.ts
it works fine when running deno:
cd root/foo/
deno run mod.ts
If however, when within cd root/foo I run deployctrl the deployment fails because the import reference to ../bar/mod.ts is outside of /foo
This appears to be an inconsistency with what deno supports, and how the deployment script pulls the deployment assets together. It would be super useful if this worked for managing things within a monorepo.
The text was updated successfully, but these errors were encountered:
If I have a folder structure:
it works fine when running deno:
If however, when within
cd root/foo
I rundeployctrl
the deployment fails because the import reference to../bar/mod.ts
is outside of/foo
This appears to be an inconsistency with what
deno
supports, and how the deployment script pulls the deployment assets together. It would be super useful if this worked for managing things within a monorepo.The text was updated successfully, but these errors were encountered: