Replies: 1 comment 2 replies
-
did you try the import maps? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We have a monorepo with a variety of components/subfolders in it, most of which are npm/NodeJS packages. However, one is a Deno process (
aggregator
) which brings a variety of npm dependencies in via esm.sh. One of them is ourclients
subfolder (bls-wallet-clients
) https://github.com/jzaki/bls-wallet/blob/main/aggregator/deps.ts#L41-L45When updating
clients
code and checking that everything works in a local dev env, I can usenpm/yarn link
to use my local changes to that package:However with
aggregator
(Deno) I have been unable to find a similar way I can bring in local changes toclients
(bls-wallet-clients
) with esm.sh or another tool. Is there some way I could accomplish this?Beta Was this translation helpful? Give feedback.
All reactions