@vercel/node 1.14.2-canary.0 → 1.14.2-canary.3
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 +1 -9
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -306918,15 +306918,7 @@ async function downloadInstallAndBundle({ files, entrypoint, workPath, config, m
|
|
|
306918
306918
|
const entrypointFsDirname = path_1.join(workPath, path_1.dirname(entrypoint));
|
|
306919
306919
|
const nodeVersion = await build_utils_1.getNodeVersion(entrypointFsDirname, undefined, config, meta);
|
|
306920
306920
|
const spawnOpts = build_utils_1.getSpawnOptions(meta, nodeVersion);
|
|
306921
|
-
|
|
306922
|
-
build_utils_1.debug('Skipping dependency installation because dev mode is enabled');
|
|
306923
|
-
}
|
|
306924
|
-
else {
|
|
306925
|
-
const installTime = Date.now();
|
|
306926
|
-
console.log('Installing dependencies...');
|
|
306927
|
-
await build_utils_1.runNpmInstall(entrypointFsDirname, [], spawnOpts, meta, nodeVersion);
|
|
306928
|
-
build_utils_1.debug(`Install complete [${Date.now() - installTime}ms]`);
|
|
306929
|
-
}
|
|
306921
|
+
await build_utils_1.runNpmInstall(entrypointFsDirname, [], spawnOpts, meta, nodeVersion);
|
|
306930
306922
|
const entrypointPath = downloadedFiles[entrypoint].fsPath;
|
|
306931
306923
|
return { entrypointPath, entrypointFsDirname, nodeVersion, spawnOpts };
|
|
306932
306924
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/node",
|
|
3
|
-
"version": "1.14.2-canary.
|
|
3
|
+
"version": "1.14.2-canary.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./dist/index",
|
|
6
6
|
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/node-js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@types/node": "*",
|
|
22
|
-
"@vercel/node-bridge": "2.2.0",
|
|
22
|
+
"@vercel/node-bridge": "2.2.1-canary.0",
|
|
23
23
|
"ts-node": "8.9.1",
|
|
24
24
|
"typescript": "4.3.4"
|
|
25
25
|
},
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@types/cookie": "0.3.3",
|
|
33
33
|
"@types/etag": "1.8.0",
|
|
34
34
|
"@types/test-listen": "1.1.0",
|
|
35
|
-
"@vercel/build-utils": "2.15.2-canary.
|
|
35
|
+
"@vercel/build-utils": "2.15.2-canary.2",
|
|
36
36
|
"@vercel/ncc": "0.24.0",
|
|
37
37
|
"@vercel/nft": "0.18.1",
|
|
38
38
|
"content-type": "1.0.4",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"source-map-support": "0.5.12",
|
|
44
44
|
"test-listen": "1.1.0"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "b61f049f1186ccc804cea35bcf61d16583ed6ca2"
|
|
47
47
|
}
|