@pnpm/tarball-resolver
Advanced tools
Comparing version 3.0.5 to 4.0.0
# @pnpm/tarball-resolver | ||
## 4.0.0 | ||
### Major Changes | ||
- 41d92948b: The direct tarball dependency ID starts with a @ and the tarball extension is not removed. | ||
## 3.0.5 | ||
@@ -4,0 +10,0 @@ |
@@ -8,8 +8,3 @@ "use strict"; | ||
return { | ||
id: wantedDependency.pref | ||
.replace(/^.*:\/\/(git@)?/, '') | ||
.replace(/\.tgz$/, ''), | ||
// TODO BREAKING CHANGE: uncomment the following: (or never remove extensions) | ||
// .replace(/\.tar.gz$/, ''), | ||
// .replace(/\.tar$/, ''), | ||
id: `@${wantedDependency.pref.replace(/^.*:\/\/(git@)?/, '')}`, | ||
normalizedPref: wantedDependency.pref, | ||
@@ -16,0 +11,0 @@ resolution: { |
{ | ||
"name": "@pnpm/tarball-resolver", | ||
"version": "3.0.5", | ||
"version": "4.0.0", | ||
"description": "Resolver for tarball dependencies", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
4330
20