@vercel/build-utils 5.7.3 → 5.7.4
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/dist/clone-env.js +3 -1
- package/dist/index.js +3 -1
- package/package.json +2 -2
package/dist/clone-env.js
CHANGED
@@ -23,7 +23,9 @@ function cloneEnv(...envs) {
|
|
23
23
|
// however we lose this proxied value when we destructure and
|
24
24
|
// thus we must explicitly copy it, but we must also remove the
|
25
25
|
// `Path` property since we can't have both a `PATH` and `Path`
|
26
|
-
obj.
|
26
|
+
if (obj.Path !== undefined) {
|
27
|
+
obj.PATH = obj.Path;
|
28
|
+
}
|
27
29
|
delete obj.Path;
|
28
30
|
}
|
29
31
|
return obj;
|
package/dist/index.js
CHANGED
@@ -30139,7 +30139,9 @@ function cloneEnv(...envs) {
|
|
30139
30139
|
// however we lose this proxied value when we destructure and
|
30140
30140
|
// thus we must explicitly copy it, but we must also remove the
|
30141
30141
|
// `Path` property since we can't have both a `PATH` and `Path`
|
30142
|
-
obj.
|
30142
|
+
if (obj.Path !== undefined) {
|
30143
|
+
obj.PATH = obj.Path;
|
30144
|
+
}
|
30143
30145
|
delete obj.Path;
|
30144
30146
|
}
|
30145
30147
|
return obj;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vercel/build-utils",
|
3
|
-
"version": "5.7.
|
3
|
+
"version": "5.7.4",
|
4
4
|
"license": "MIT",
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"types": "./dist/index.d.js",
|
@@ -47,5 +47,5 @@
|
|
47
47
|
"typescript": "4.3.4",
|
48
48
|
"yazl": "2.5.1"
|
49
49
|
},
|
50
|
-
"gitHead": "
|
50
|
+
"gitHead": "721cd3afcbff994fa96704b4eb79e5f6da7ab73c"
|
51
51
|
}
|