@vercel/remix-builder 2.2.9 → 2.2.11

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 +7 -7
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -3153,10 +3153,7 @@ var build = async ({
3153
3153
  config,
3154
3154
  meta
3155
3155
  );
3156
- const { cliType, lockfileVersion, packageJson } = await (0, import_build_utils3.scanParentDirs)(
3157
- entrypointFsDirname,
3158
- true
3159
- );
3156
+ const { cliType, lockfileVersion, packageJson, turboSupportsCorepackHome } = await (0, import_build_utils3.scanParentDirs)(entrypointFsDirname, true);
3160
3157
  const spawnOpts = (0, import_build_utils3.getSpawnOptions)(meta, nodeVersion);
3161
3158
  if (!spawnOpts.env) {
3162
3159
  spawnOpts.env = {};
@@ -3166,7 +3163,8 @@ var build = async ({
3166
3163
  lockfileVersion,
3167
3164
  packageJsonPackageManager: packageJson?.packageManager,
3168
3165
  nodeVersion,
3169
- env: spawnOpts.env
3166
+ env: spawnOpts.env,
3167
+ turboSupportsCorepackHome
3170
3168
  });
3171
3169
  if (typeof installCommand === "string") {
3172
3170
  if (installCommand.trim()) {
@@ -3563,7 +3561,8 @@ var build2 = async ({
3563
3561
  packageJsonPath,
3564
3562
  packageJson,
3565
3563
  lockfileVersion,
3566
- lockfilePath
3564
+ lockfilePath,
3565
+ turboSupportsCorepackHome
3567
3566
  } = await (0, import_build_utils4.scanParentDirs)(entrypointFsDirname, true);
3568
3567
  if (!packageJsonPath) {
3569
3568
  throw new Error("Failed to locate `package.json` file in your project");
@@ -3582,7 +3581,8 @@ var build2 = async ({
3582
3581
  lockfileVersion,
3583
3582
  packageJsonPackageManager: packageJson?.packageManager,
3584
3583
  nodeVersion,
3585
- env: spawnOpts.env
3584
+ env: spawnOpts.env,
3585
+ turboSupportsCorepackHome
3586
3586
  });
3587
3587
  if (typeof installCommand === "string") {
3588
3588
  if (installCommand.trim()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/remix-builder",
3
- "version": "2.2.9",
3
+ "version": "2.2.11",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "homepage": "https://vercel.com/docs",
@@ -25,7 +25,7 @@
25
25
  "@types/jest": "27.5.1",
26
26
  "@types/node": "14.18.33",
27
27
  "@types/semver": "7.3.13",
28
- "@vercel/build-utils": "8.4.2",
28
+ "@vercel/build-utils": "8.4.8",
29
29
  "glob": "10.3.16",
30
30
  "jest-junit": "16.0.0",
31
31
  "path-to-regexp": "6.2.1",