@vercel/ruby 1.3.31 → 1.3.32
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 -3
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -8649,12 +8649,11 @@ async function bundleInstall(bundlePath, bundleDir, gemfilePath) {
|
|
|
8649
8649
|
}
|
|
8650
8650
|
await execa_1.default(bundlePath, ['install', '--deployment', '--gemfile', gemfilePath, '--path', bundleDir], {
|
|
8651
8651
|
stdio: 'pipe',
|
|
8652
|
-
env: {
|
|
8653
|
-
...process.env,
|
|
8652
|
+
env: build_utils_1.cloneEnv(process.env, {
|
|
8654
8653
|
BUNDLE_SILENCE_ROOT_WARNING: '1',
|
|
8655
8654
|
BUNDLE_APP_CONFIG: bundleAppConfig,
|
|
8656
8655
|
BUNDLE_JOBS: '4',
|
|
8657
|
-
},
|
|
8656
|
+
}),
|
|
8658
8657
|
});
|
|
8659
8658
|
}
|
|
8660
8659
|
exports.version = 3;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/ruby",
|
|
3
3
|
"author": "Nathan Cahill <nathan@nathancahill.com>",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.32",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index",
|
|
7
7
|
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/ruby",
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@types/fs-extra": "8.0.0",
|
|
24
24
|
"@types/semver": "6.0.0",
|
|
25
|
-
"@vercel/build-utils": "5.4.
|
|
25
|
+
"@vercel/build-utils": "5.4.3",
|
|
26
26
|
"@vercel/ncc": "0.24.0",
|
|
27
27
|
"execa": "2.0.4",
|
|
28
28
|
"fs-extra": "^7.0.1",
|
|
29
29
|
"semver": "6.1.1",
|
|
30
30
|
"typescript": "4.3.4"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "619ca9342156758efdb0db8adaf20e0d4a1493e4"
|
|
33
33
|
}
|