@vercel/remix-builder 5.9.5 → 7.0.0

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -0
  2. package/package.json +8 -4
package/dist/index.js CHANGED
@@ -3023,12 +3023,14 @@ var build = async ({
3023
3023
  lockfileVersion,
3024
3024
  packageJson,
3025
3025
  packageJsonPackageManager,
3026
+ packageJsonDevEngines,
3026
3027
  turboSupportsCorepackHome
3027
3028
  } = await (0, import_build_utils3.scanParentDirs)(entrypointFsDirname, true);
3028
3029
  const spawnEnv = (0, import_build_utils3.getEnvForPackageManager)({
3029
3030
  cliType,
3030
3031
  lockfileVersion,
3031
3032
  packageJsonPackageManager,
3033
+ packageJsonDevEngines,
3032
3034
  nodeVersion,
3033
3035
  env: process.env,
3034
3036
  turboSupportsCorepackHome,
@@ -3552,6 +3554,7 @@ var build2 = async ({
3552
3554
  lockfileVersion,
3553
3555
  lockfilePath,
3554
3556
  packageJsonPackageManager,
3557
+ packageJsonDevEngines,
3555
3558
  turboSupportsCorepackHome
3556
3559
  } = await (0, import_build_utils4.scanParentDirs)(entrypointFsDirname, true);
3557
3560
  if (!packageJsonPath) {
@@ -3566,6 +3569,7 @@ var build2 = async ({
3566
3569
  cliType,
3567
3570
  lockfileVersion,
3568
3571
  packageJsonPackageManager,
3572
+ packageJsonDevEngines,
3569
3573
  nodeVersion,
3570
3574
  env: process.env,
3571
3575
  turboSupportsCorepackHome,
@@ -4146,12 +4150,14 @@ var prepareCache = async ({
4146
4150
  cliType,
4147
4151
  lockfileVersion,
4148
4152
  packageJsonPackageManager,
4153
+ packageJsonDevEngines,
4149
4154
  turboSupportsCorepackHome
4150
4155
  } = await (0, import_build_utils5.scanParentDirs)(entrypointFsDirname, true);
4151
4156
  const spawnEnv = (0, import_build_utils5.getEnvForPackageManager)({
4152
4157
  cliType,
4153
4158
  lockfileVersion,
4154
4159
  packageJsonPackageManager,
4160
+ packageJsonDevEngines,
4155
4161
  nodeVersion,
4156
4162
  env: process.env,
4157
4163
  turboSupportsCorepackHome,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/remix-builder",
3
- "version": "5.9.5",
3
+ "version": "7.0.0",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "homepage": "https://vercel.com/docs",
@@ -19,8 +19,11 @@
19
19
  "path-to-regexp-updated": "npm:path-to-regexp@6.3.0",
20
20
  "path-to-regexp": "6.1.0",
21
21
  "ts-morph": "12.0.0",
22
- "@vercel/error-utils": "2.2.1",
23
- "@vercel/static-config": "3.4.1"
22
+ "@vercel/static-config": "3.4.1",
23
+ "@vercel/error-utils": "2.2.1"
24
+ },
25
+ "peerDependencies": {
26
+ "@vercel/build-utils": "14.4.0"
24
27
  },
25
28
  "devDependencies": {
26
29
  "@types/node": "20.11.0",
@@ -28,13 +31,14 @@
28
31
  "glob": "10.3.16",
29
32
  "semver": "7.5.2",
30
33
  "vitest": "4.1.10",
31
- "@vercel/build-utils": "14.1.1"
34
+ "@vercel/build-utils": "14.4.0"
32
35
  },
33
36
  "VERCEL_REMIX_RUN_DEV_MAX_VERSION": "2.16.6",
34
37
  "scripts": {
35
38
  "build": "node ../../utils/build-builder.mjs",
36
39
  "test": "vitest run --config ../../vitest.config.mts",
37
40
  "test-e2e": "vitest run --config ../../vitest.config.mts test/integration-",
41
+ "test-e2e-builder": "pnpm run test-e2e",
38
42
  "type-check": "tsc --noEmit",
39
43
  "test-unit": "vitest run --config ../../vitest.config.mts test/unit."
40
44
  }