@vercel/node 2.5.24 → 2.5.26
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 -2
- package/dist/typescript.js +2 -2
- package/package.json +5 -5
package/dist/index.js
CHANGED
@@ -305270,10 +305270,10 @@ function register(opts = {}) {
|
|
305270
305270
|
//eslint-disable-next-line @typescript-eslint/no-var-requires
|
305271
305271
|
const ts = require_(compiler);
|
305272
305272
|
if (compiler.startsWith(nowNodeBase)) {
|
305273
|
-
console.log(
|
305273
|
+
console.log(`Using built-in TypeScript ${ts.version} since "typescript" missing from "devDependencies"`);
|
305274
305274
|
}
|
305275
305275
|
else {
|
305276
|
-
console.log(
|
305276
|
+
console.log(`Using TypeScript ${ts.version} (local user-provided)`);
|
305277
305277
|
}
|
305278
305278
|
const transformers = options.transformers || undefined;
|
305279
305279
|
const readFile = options.readFile || ts.sys.readFile;
|
package/dist/typescript.js
CHANGED
@@ -104,10 +104,10 @@ function register(opts = {}) {
|
|
104
104
|
//eslint-disable-next-line @typescript-eslint/no-var-requires
|
105
105
|
const ts = require_(compiler);
|
106
106
|
if (compiler.startsWith(nowNodeBase)) {
|
107
|
-
console.log(
|
107
|
+
console.log(`Using built-in TypeScript ${ts.version} since "typescript" missing from "devDependencies"`);
|
108
108
|
}
|
109
109
|
else {
|
110
|
-
console.log(
|
110
|
+
console.log(`Using TypeScript ${ts.version} (local user-provided)`);
|
111
111
|
}
|
112
112
|
const transformers = options.transformers || undefined;
|
113
113
|
const readFile = options.readFile || ts.sys.readFile;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vercel/node",
|
3
|
-
"version": "2.5.
|
3
|
+
"version": "2.5.26",
|
4
4
|
"license": "MIT",
|
5
5
|
"main": "./dist/index",
|
6
6
|
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/node-js",
|
@@ -29,12 +29,12 @@
|
|
29
29
|
}
|
30
30
|
},
|
31
31
|
"dependencies": {
|
32
|
-
"@edge-runtime/vm": "1.1.0-beta.
|
32
|
+
"@edge-runtime/vm": "1.1.0-beta.37",
|
33
33
|
"@types/node": "*",
|
34
|
-
"@vercel/build-utils": "5.5.
|
34
|
+
"@vercel/build-utils": "5.5.5",
|
35
35
|
"@vercel/node-bridge": "3.0.0",
|
36
36
|
"@vercel/static-config": "2.0.3",
|
37
|
-
"edge-runtime": "1.1.0-beta.
|
37
|
+
"edge-runtime": "1.1.0-beta.40",
|
38
38
|
"esbuild": "0.14.47",
|
39
39
|
"exit-hook": "2.2.1",
|
40
40
|
"node-fetch": "2.6.7",
|
@@ -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": "dd94dcab3255839c7c9addbba35026dc88cf0e95"
|
65
65
|
}
|