How to Ensure Library B Uses the Same Version of Library C as My App #27447
Replies: 1 comment
-
This is solved by both libraries specifying a version range instead of an exact version. Example:
This will install To see all available version constraint characters, check out this page in the docs. Note that version specifiers only work with In the Node ecosystem you'll come across the term |
Beta Was this translation helpful? Give feedback.
-
Hello,
I have a scenario where my application imports Library B, and both my app and Library B rely on Library C. I want to ensure that Library B uses the same version of Library C as my application.
How can I enforce this in Deno?
Beta Was this translation helpful? Give feedback.
All reactions