@vercel/ruby 2.2.2 → 2.2.4
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 +6 -11
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -7518,20 +7518,15 @@ async function bundleInstall(bundlePath, bundleDir, gemfilePath, rubyPath) {
|
|
|
7518
7518
|
PATH: `${(0, import_path3.dirname)(rubyPath)}:${(0, import_path3.dirname)(bundlePath)}:${process.env.PATH}`,
|
|
7519
7519
|
BUNDLE_SILENCE_ROOT_WARNING: "1",
|
|
7520
7520
|
BUNDLE_APP_CONFIG: bundleAppConfig,
|
|
7521
|
-
BUNDLE_JOBS: "4"
|
|
7521
|
+
BUNDLE_JOBS: "4",
|
|
7522
|
+
BUNDLE_DEPLOYMENT: "true",
|
|
7523
|
+
BUNDLE_PATH: bundleDir,
|
|
7524
|
+
BUNDLE_FROZEN: "true"
|
|
7522
7525
|
});
|
|
7523
|
-
(0, import_build_utils3.debug)('running "bundle install
|
|
7526
|
+
(0, import_build_utils3.debug)('running "bundle install"');
|
|
7524
7527
|
const installRes = await (0, import_execa2.default)(
|
|
7525
7528
|
bundlePath,
|
|
7526
|
-
[
|
|
7527
|
-
"install",
|
|
7528
|
-
"--deployment",
|
|
7529
|
-
"--frozen",
|
|
7530
|
-
"--gemfile",
|
|
7531
|
-
gemfilePath,
|
|
7532
|
-
"--path",
|
|
7533
|
-
bundleDir
|
|
7534
|
-
],
|
|
7529
|
+
["install", "--gemfile", gemfilePath],
|
|
7535
7530
|
{
|
|
7536
7531
|
stdio: "pipe",
|
|
7537
7532
|
env: bundlerEnv,
|
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": "2.2.
|
|
4
|
+
"version": "2.2.4",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index",
|
|
7
7
|
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/ruby",
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"@types/fs-extra": "8.0.0",
|
|
20
20
|
"@types/semver": "6.0.0",
|
|
21
21
|
"@types/which": "3.0.0",
|
|
22
|
-
"@vercel/build-utils": "13.0.1",
|
|
23
22
|
"execa": "2.0.4",
|
|
24
23
|
"fs-extra": "^7.0.1",
|
|
25
24
|
"jest-junit": "16.0.0",
|
|
26
25
|
"semver": "6.3.1",
|
|
27
|
-
"which": "3.0.0"
|
|
26
|
+
"which": "3.0.0",
|
|
27
|
+
"@vercel/build-utils": "13.2.4"
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
30
|
"build": "node ../../utils/build-builder.mjs",
|