@vercel/node 2.5.14 → 2.5.16
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/index.js +2 -4
- package/package.json +3 -3
package/dist/index.js
CHANGED
@@ -305067,15 +305067,13 @@ const startDevServer = async (opts) => {
|
|
305067
305067
|
const child = child_process_1.fork(devServerPath, [], {
|
305068
305068
|
cwd: workPath,
|
305069
305069
|
execArgv: [],
|
305070
|
-
env: {
|
305071
|
-
...process.env,
|
305072
|
-
...meta.env,
|
305070
|
+
env: build_utils_1.cloneEnv(process.env, meta.env, {
|
305073
305071
|
VERCEL_DEV_ENTRYPOINT: entrypoint,
|
305074
305072
|
VERCEL_DEV_TSCONFIG: projectTsConfig || '',
|
305075
305073
|
VERCEL_DEV_IS_ESM: isEsm ? '1' : undefined,
|
305076
305074
|
VERCEL_DEV_CONFIG: JSON.stringify(config),
|
305077
305075
|
VERCEL_DEV_BUILD_ENV: JSON.stringify(meta.buildEnv || {}),
|
305078
|
-
},
|
305076
|
+
}),
|
305079
305077
|
});
|
305080
305078
|
const { pid } = child;
|
305081
305079
|
if (!pid) {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vercel/node",
|
3
|
-
"version": "2.5.
|
3
|
+
"version": "2.5.16",
|
4
4
|
"license": "MIT",
|
5
5
|
"main": "./dist/index",
|
6
6
|
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/node-js",
|
@@ -31,7 +31,7 @@
|
|
31
31
|
"dependencies": {
|
32
32
|
"@edge-runtime/vm": "1.1.0-beta.32",
|
33
33
|
"@types/node": "*",
|
34
|
-
"@vercel/build-utils": "5.4.
|
34
|
+
"@vercel/build-utils": "5.4.4",
|
35
35
|
"@vercel/node-bridge": "3.0.0",
|
36
36
|
"@vercel/static-config": "2.0.3",
|
37
37
|
"edge-runtime": "1.1.0-beta.32",
|
@@ -61,5 +61,5 @@
|
|
61
61
|
"source-map-support": "0.5.12",
|
62
62
|
"test-listen": "1.1.0"
|
63
63
|
},
|
64
|
-
"gitHead": "
|
64
|
+
"gitHead": "27f4034bdce427953fea094b1c4dfbfb00342b54"
|
65
65
|
}
|