@vercel/remix-builder 5.5.5 → 5.5.7
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 +3 -3
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -2971,7 +2971,7 @@ var build = async ({
|
|
|
2971
2971
|
const mountpoint = (0, import_path2.dirname)(entrypoint);
|
|
2972
2972
|
const entrypointFsDirname = (0, import_path2.join)(workPath, mountpoint);
|
|
2973
2973
|
const frameworkSettings = config.framework === "react-router" ? REACT_ROUTER_FRAMEWORK_SETTINGS : REMIX_FRAMEWORK_SETTINGS;
|
|
2974
|
-
const nodeVersion = await (0, import_build_utils3.
|
|
2974
|
+
const nodeVersion = await (0, import_build_utils3.getRuntimeNodeVersion)(
|
|
2975
2975
|
entrypointFsDirname,
|
|
2976
2976
|
void 0,
|
|
2977
2977
|
config,
|
|
@@ -3444,7 +3444,7 @@ var build2 = async ({
|
|
|
3444
3444
|
await (0, import_build_utils4.download)(files, workPath, meta);
|
|
3445
3445
|
const mountpoint = (0, import_path4.dirname)(entrypoint);
|
|
3446
3446
|
const entrypointFsDirname = (0, import_path4.join)(workPath, mountpoint);
|
|
3447
|
-
const nodeVersion = await (0, import_build_utils4.
|
|
3447
|
+
const nodeVersion = await (0, import_build_utils4.getRuntimeNodeVersion)(
|
|
3448
3448
|
entrypointFsDirname,
|
|
3449
3449
|
void 0,
|
|
3450
3450
|
config,
|
|
@@ -4022,7 +4022,7 @@ var prepareCache = async ({
|
|
|
4022
4022
|
const entrypointFsDirname = (0, import_path5.join)(workPath, mountpoint);
|
|
4023
4023
|
let cacheDirFiles;
|
|
4024
4024
|
if (!isVite(workPath)) {
|
|
4025
|
-
const nodeVersion = await (0, import_build_utils5.
|
|
4025
|
+
const nodeVersion = await (0, import_build_utils5.getRuntimeNodeVersion)(
|
|
4026
4026
|
entrypointFsDirname,
|
|
4027
4027
|
void 0,
|
|
4028
4028
|
config
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/remix-builder",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.7",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"homepage": "https://vercel.com/docs",
|
|
@@ -15,22 +15,22 @@
|
|
|
15
15
|
"defaults"
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@vercel/error-utils": "2.0.3",
|
|
19
18
|
"@vercel/nft": "1.1.1",
|
|
20
|
-
"@vercel/static-config": "3.1.2",
|
|
21
19
|
"path-to-regexp-updated": "npm:path-to-regexp@6.3.0",
|
|
22
20
|
"path-to-regexp": "6.1.0",
|
|
23
|
-
"ts-morph": "12.0.0"
|
|
21
|
+
"ts-morph": "12.0.0",
|
|
22
|
+
"@vercel/error-utils": "2.0.3",
|
|
23
|
+
"@vercel/static-config": "3.1.2"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/jest": "27.5.1",
|
|
27
27
|
"@types/node": "14.18.33",
|
|
28
28
|
"@types/semver": "7.3.13",
|
|
29
|
-
"@vercel/build-utils": "13.2.2",
|
|
30
29
|
"glob": "10.3.16",
|
|
31
30
|
"jest-junit": "16.0.0",
|
|
32
31
|
"semver": "7.5.2",
|
|
33
|
-
"vitest": "2.0.1"
|
|
32
|
+
"vitest": "2.0.1",
|
|
33
|
+
"@vercel/build-utils": "13.2.7"
|
|
34
34
|
},
|
|
35
35
|
"VERCEL_REMIX_RUN_DEV_MAX_VERSION": "2.16.6",
|
|
36
36
|
"scripts": {
|