@vercel/build-utils 10.3.2 → 10.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/fs/run-user-scripts.d.ts +0 -5
- package/dist/fs/run-user-scripts.js +1 -2
- package/dist/index.js +1 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -144,11 +144,6 @@ export declare function detectPackageManager(cliType: CliType, lockfileVersion:
|
|
144
144
|
detectedLockfile: string;
|
145
145
|
detectedPackageManager: string;
|
146
146
|
pnpmVersionRange: string;
|
147
|
-
} | {
|
148
|
-
path: undefined;
|
149
|
-
detectedLockfile: string;
|
150
|
-
detectedPackageManager: string;
|
151
|
-
pnpmVersionRange: string;
|
152
147
|
} | {
|
153
148
|
path: string;
|
154
149
|
detectedLockfile: string;
|
@@ -833,8 +833,7 @@ function detectPackageManager(cliType, lockfileVersion, projectCreatedAt) {
|
|
833
833
|
};
|
834
834
|
case "pnpm 6":
|
835
835
|
return {
|
836
|
-
|
837
|
-
path: void 0,
|
836
|
+
path: "/pnpm6/node_modules/.bin",
|
838
837
|
detectedLockfile: "pnpm-lock.yaml",
|
839
838
|
detectedPackageManager: "pnpm@6.x",
|
840
839
|
pnpmVersionRange: "6.x"
|
package/dist/index.js
CHANGED
@@ -23847,8 +23847,7 @@ function detectPackageManager(cliType, lockfileVersion, projectCreatedAt) {
|
|
23847
23847
|
};
|
23848
23848
|
case "pnpm 6":
|
23849
23849
|
return {
|
23850
|
-
|
23851
|
-
path: void 0,
|
23850
|
+
path: "/pnpm6/node_modules/.bin",
|
23852
23851
|
detectedLockfile: "pnpm-lock.yaml",
|
23853
23852
|
detectedPackageManager: "pnpm@6.x",
|
23854
23853
|
pnpmVersionRange: "6.x"
|