forked from vercel/turborepo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: pnpm prune misses git dependency (vercel#3517)
Fixes vercel#2870 The resolved version of a `github:` dependency is the lockfile key of the package so now when resolving a package we check and see if we can find a package by using just the version instead of `/name@version`. This is built on top of vercel#3483 so review that first.
- Loading branch information
1 parent
93a0e54
commit b4c22a5
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ importers: | |
"@babel/core": ^7.0.0 | ||
"@types/node": ^17.0.12 | ||
"@types/react": 18.0.17 | ||
dashboard-icons: github:peerigon/dashboard-icons | ||
eslint: 7.32.0 | ||
eslint-config-custom: workspace:* | ||
next: 12.2.5 | ||
|
@@ -35,6 +36,7 @@ importers: | |
ui: workspace:* | ||
underscore: ^1.13.4 | ||
dependencies: | ||
dashboard-icons: github.com/peerigon/dashboard-icons/ce27ef933144e09cef3911025f3649040a8571b6 | ||
next: 12.2.5_ir3quccc6i62x6qn6jjhyjjiey | ||
react: 18.2.0 | ||
react-dom: [email protected] | ||
|
@@ -3432,3 +3434,12 @@ packages: | |
name: ui | ||
version: 0.0.0 | ||
dev: false | ||
|
||
github.com/peerigon/dashboard-icons/ce27ef933144e09cef3911025f3649040a8571b6: | ||
resolution: | ||
{ | ||
tarball: https://codeload.github.com/peerigon/dashboard-icons/tar.gz/ce27ef933144e09cef3911025f3649040a8571b, | ||
} | ||
name: dashboard-icons | ||
version: 1.0.0 | ||
dev: false |