diff options
author | Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> | 2024-07-16 13:30:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-16 20:30:28 +0000 |
commit | c9da27e147d0681724dd647593abbaa46417feb7 (patch) | |
tree | 5be711cf42fe5b7109b8b88d75425eb1cf538075 /tests/specs/npm/workspace_dep_aliases/b/index.js | |
parent | 6421dc33ede06fb429000c3a560214cdaf573673 (diff) |
fix(cli): Create child node_modules for conflicting dependency versions, respect aliases in package.json (#24609)
Fixes #24419.
Diffstat (limited to 'tests/specs/npm/workspace_dep_aliases/b/index.js')
-rw-r--r-- | tests/specs/npm/workspace_dep_aliases/b/index.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/specs/npm/workspace_dep_aliases/b/index.js b/tests/specs/npm/workspace_dep_aliases/b/index.js new file mode 100644 index 000000000..5645c0876 --- /dev/null +++ b/tests/specs/npm/workspace_dep_aliases/b/index.js @@ -0,0 +1,3 @@ +import { add } from "addPkg"; + +console.log(`1 + 2 = ${add(1, 2)}`); |