@vercel/build-utils 7.12.0 → 8.0.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 +10 -0
- package/dist/get-prefixed-env-vars.js +2 -1
- package/dist/index.js +2 -1
- package/dist/types.d.ts +0 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,15 @@
|
|
1
1
|
# @vercel/build-utils
|
2
2
|
|
3
|
+
## 8.0.0
|
4
|
+
|
5
|
+
### Major Changes
|
6
|
+
|
7
|
+
- Remove legacy `avoidTopLevelInstall` logic ([#11513](https://github.com/vercel/vercel/pull/11513))
|
8
|
+
|
9
|
+
### Patch Changes
|
10
|
+
|
11
|
+
- [build-utils] Add `VERCEL_PROJECT_PRODUCTION_URL` framework env var prefix ([#11506](https://github.com/vercel/vercel/pull/11506))
|
12
|
+
|
3
13
|
## 7.12.0
|
4
14
|
|
5
15
|
### Minor Changes
|
package/dist/index.js
CHANGED
@@ -22358,7 +22358,8 @@ function getPrefixedEnvVars({
|
|
22358
22358
|
"VERCEL_URL",
|
22359
22359
|
"VERCEL_ENV",
|
22360
22360
|
"VERCEL_REGION",
|
22361
|
-
"VERCEL_BRANCH_URL"
|
22361
|
+
"VERCEL_BRANCH_URL",
|
22362
|
+
"VERCEL_PROJECT_PRODUCTION_URL"
|
22362
22363
|
];
|
22363
22364
|
const newEnvs = {};
|
22364
22365
|
if (envPrefix && envs.VERCEL_URL) {
|
package/dist/types.d.ts
CHANGED