-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(core): pnpm parser should handle aliased deps
- Loading branch information
Showing
3 changed files
with
25 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1067,7 +1067,7 @@ describe('pnpm LockFile utility', () => { | |
"data": { | ||
"hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", | ||
"packageName": "string-width-cjs", | ||
"version": "npm:string-width@^4.2.0", | ||
"version": "npm:[email protected].3", | ||
}, | ||
"name": "npm:string-width-cjs", | ||
"type": "npm", | ||
|
@@ -1081,20 +1081,11 @@ describe('pnpm LockFile utility', () => { | |
"name": "npm:[email protected]", | ||
"type": "npm", | ||
}, | ||
"npm:strip-ansi": { | ||
"data": { | ||
"hash": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", | ||
"packageName": "strip-ansi", | ||
"version": "7.0.1", | ||
}, | ||
"name": "npm:strip-ansi", | ||
"type": "npm", | ||
}, | ||
"npm:strip-ansi-cjs": { | ||
"data": { | ||
"hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", | ||
"packageName": "strip-ansi-cjs", | ||
"version": "npm:strip-ansi@^6.0.1", | ||
"version": "npm:[email protected]", | ||
}, | ||
"name": "npm:strip-ansi-cjs", | ||
"type": "npm", | ||
|
@@ -1108,6 +1099,15 @@ describe('pnpm LockFile utility', () => { | |
"name": "npm:[email protected]", | ||
"type": "npm", | ||
}, | ||
"npm:[email protected]": { | ||
"data": { | ||
"hash": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", | ||
"packageName": "strip-ansi", | ||
"version": "7.1.0", | ||
}, | ||
"name": "npm:[email protected]", | ||
"type": "npm", | ||
}, | ||
"npm:wrap-ansi": { | ||
"data": { | ||
"hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", | ||
|
@@ -1121,7 +1121,7 @@ describe('pnpm LockFile utility', () => { | |
"data": { | ||
"hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", | ||
"packageName": "wrap-ansi-cjs", | ||
"version": "npm:wrap-ansi@^7.0.0", | ||
"version": "npm:[email protected]", | ||
}, | ||
"name": "npm:wrap-ansi-cjs", | ||
"type": "npm", | ||
|
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