vercel 48.2.2 → 48.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 +19 -12
- package/package.json +8 -8
package/dist/index.js
CHANGED
|
@@ -31623,16 +31623,14 @@ var init_command3 = __esm({
|
|
|
31623
31623
|
{
|
|
31624
31624
|
...yesOption,
|
|
31625
31625
|
description: "Skip the confirmation prompt about pulling environment variables and project settings when not found locally"
|
|
31626
|
+
},
|
|
31627
|
+
{
|
|
31628
|
+
name: "standalone",
|
|
31629
|
+
description: "Create a standalone build with all dependencies inlined into function output folders",
|
|
31630
|
+
shorthand: null,
|
|
31631
|
+
type: Boolean,
|
|
31632
|
+
deprecated: false
|
|
31626
31633
|
}
|
|
31627
|
-
// FIXME: standalone:replace env var with flag
|
|
31628
|
-
// {
|
|
31629
|
-
// name: 'experimentalStandalone',
|
|
31630
|
-
// description:
|
|
31631
|
-
// 'Create a standalone build with all dependencies inlined into function output folders',
|
|
31632
|
-
// shorthand: null,
|
|
31633
|
-
// type: Boolean,
|
|
31634
|
-
// deprecated: false,
|
|
31635
|
-
// },
|
|
31636
31634
|
],
|
|
31637
31635
|
examples: [
|
|
31638
31636
|
{
|
|
@@ -49570,7 +49568,7 @@ var require_package = __commonJS2({
|
|
|
49570
49568
|
"../client/package.json"(exports2, module2) {
|
|
49571
49569
|
module2.exports = {
|
|
49572
49570
|
name: "@vercel/client",
|
|
49573
|
-
version: "17.0.
|
|
49571
|
+
version: "17.0.2",
|
|
49574
49572
|
main: "dist/index.js",
|
|
49575
49573
|
typings: "dist/index.d.ts",
|
|
49576
49574
|
homepage: "https://vercel.com",
|
|
@@ -49609,7 +49607,7 @@ var require_package = __commonJS2({
|
|
|
49609
49607
|
vitest: "2.0.1"
|
|
49610
49608
|
},
|
|
49611
49609
|
dependencies: {
|
|
49612
|
-
"@vercel/build-utils": "12.1.
|
|
49610
|
+
"@vercel/build-utils": "12.1.1",
|
|
49613
49611
|
"@vercel/error-utils": "2.0.3",
|
|
49614
49612
|
"@vercel/microfrontends": "1.2.2",
|
|
49615
49613
|
"@vercel/routing-utils": "5.2.0",
|
|
@@ -146855,6 +146853,7 @@ async function main3(client2) {
|
|
|
146855
146853
|
telemetryClient.trackCliOptionTarget(parsedArgs.flags["--target"]);
|
|
146856
146854
|
telemetryClient.trackCliFlagProd(parsedArgs.flags["--prod"]);
|
|
146857
146855
|
telemetryClient.trackCliFlagYes(parsedArgs.flags["--yes"]);
|
|
146856
|
+
telemetryClient.trackCliFlagStandalone(parsedArgs.flags["--standalone"]);
|
|
146858
146857
|
} catch (error3) {
|
|
146859
146858
|
printError(error3);
|
|
146860
146859
|
return 1;
|
|
@@ -146869,7 +146868,15 @@ async function main3(client2) {
|
|
|
146869
146868
|
flags: parsedArgs.flags
|
|
146870
146869
|
}) || "preview";
|
|
146871
146870
|
const yes = Boolean(parsedArgs.flags["--yes"]);
|
|
146872
|
-
const
|
|
146871
|
+
const hasDeprecatedEnvVar = process.env.VERCEL_EXPERIMENTAL_STANDALONE_BUILD === "1";
|
|
146872
|
+
if (hasDeprecatedEnvVar) {
|
|
146873
|
+
output_manager_default.warn(
|
|
146874
|
+
"The VERCEL_EXPERIMENTAL_STANDALONE_BUILD environment variable is deprecated. Please use the --standalone flag instead."
|
|
146875
|
+
);
|
|
146876
|
+
}
|
|
146877
|
+
const standalone = Boolean(
|
|
146878
|
+
parsedArgs.flags["--standalone"] || hasDeprecatedEnvVar
|
|
146879
|
+
);
|
|
146873
146880
|
try {
|
|
146874
146881
|
await (0, import_build_utils13.validateNpmrc)(cwd);
|
|
146875
146882
|
} catch (err) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vercel",
|
|
3
|
-
"version": "48.2.
|
|
3
|
+
"version": "48.2.4",
|
|
4
4
|
"preferGlobal": true,
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"description": "The command-line interface for Vercel",
|
|
@@ -22,20 +22,20 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@vercel/blob": "1.0.2",
|
|
25
|
-
"@vercel/build-utils": "12.1.
|
|
25
|
+
"@vercel/build-utils": "12.1.1",
|
|
26
26
|
"@vercel/fun": "1.1.6",
|
|
27
27
|
"@vercel/go": "3.2.3",
|
|
28
|
-
"@vercel/express": "0.0.
|
|
29
|
-
"@vercel/hono": "0.1.
|
|
30
|
-
"@vercel/h3": "0.1.
|
|
28
|
+
"@vercel/express": "0.0.23",
|
|
29
|
+
"@vercel/hono": "0.1.4",
|
|
30
|
+
"@vercel/h3": "0.1.3",
|
|
31
31
|
"@vercel/hydrogen": "1.2.4",
|
|
32
32
|
"@vercel/next": "4.13.2",
|
|
33
|
-
"@vercel/node": "5.3.
|
|
33
|
+
"@vercel/node": "5.3.25",
|
|
34
34
|
"@vercel/python": "5.0.7",
|
|
35
35
|
"@vercel/redwood": "2.3.6",
|
|
36
36
|
"@vercel/remix-builder": "5.4.13",
|
|
37
37
|
"@vercel/ruby": "2.2.1",
|
|
38
|
-
"@vercel/static-build": "2.7.
|
|
38
|
+
"@vercel/static-build": "2.7.24",
|
|
39
39
|
"chokidar": "4.0.0",
|
|
40
40
|
"jose": "5.9.6",
|
|
41
41
|
"@vercel/detect-agent": "1.0.0"
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"@types/which": "3.0.0",
|
|
84
84
|
"@types/write-json-file": "2.2.1",
|
|
85
85
|
"@types/yauzl-promise": "2.1.0",
|
|
86
|
-
"@vercel/client": "17.0.
|
|
86
|
+
"@vercel/client": "17.0.2",
|
|
87
87
|
"@vercel/error-utils": "2.0.3",
|
|
88
88
|
"@vercel/frameworks": "3.11.0",
|
|
89
89
|
"@vercel/fs-detectors": "5.6.0",
|