vercel 46.0.0 → 46.0.1

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 +51 -18
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -116668,6 +116668,45 @@ var require_frameworks = __commonJS2({
116668
116668
  dependency: "express",
116669
116669
  getOutputDirName: async () => "public"
116670
116670
  },
116671
+ {
116672
+ name: "xmcp",
116673
+ slug: "xmcp",
116674
+ logo: "https://api-frameworks.vercel.sh/framework-logos/xmcp.svg",
116675
+ tagline: "The MCP framework for building AI-powered tools",
116676
+ description: "A framework for building Model Context Protocol servers with zero configuration.",
116677
+ website: "https://xmcp.dev",
116678
+ detectors: {
116679
+ some: [
116680
+ {
116681
+ path: "xmcp.config.ts"
116682
+ },
116683
+ {
116684
+ path: "xmcp.config.js"
116685
+ },
116686
+ {
116687
+ matchPackage: "xmcp"
116688
+ }
116689
+ ]
116690
+ },
116691
+ settings: {
116692
+ installCommand: {
116693
+ placeholder: "`yarn install`, `pnpm install`, `npm install`, or `bun install`"
116694
+ },
116695
+ buildCommand: {
116696
+ placeholder: "`npm run build` or `xmcp build`",
116697
+ value: "xmcp build --vercel"
116698
+ },
116699
+ devCommand: {
116700
+ value: "xmcp dev",
116701
+ placeholder: "xmcp dev"
116702
+ },
116703
+ outputDirectory: {
116704
+ value: "dist"
116705
+ }
116706
+ },
116707
+ dependency: "xmcp",
116708
+ getOutputDirName: async () => "dist"
116709
+ },
116671
116710
  {
116672
116711
  name: "Other",
116673
116712
  slug: null,
@@ -129843,15 +129882,15 @@ async function getStore2(client2, argv, rwToken) {
129843
129882
  method: "GET",
129844
129883
  accountId: link4.status === "linked" ? link4.org.id : void 0
129845
129884
  });
129846
- const dateTimeFormat3 = "MM/DD/YYYY HH:mm:ss.SS";
129885
+ const dateTimeFormat2 = "MM/DD/YYYY HH:mm:ss.SS";
129847
129886
  const regionInfo = store2.store.region ? `
129848
129887
  Region: ${store2.store.region}` : "";
129849
129888
  output_manager_default.print(
129850
129889
  `Blob Store: ${import_chalk40.default.bold(store2.store.name)} (${import_chalk40.default.dim(store2.store.id)})
129851
129890
  Billing State: ${store2.store.billingState === "active" ? import_chalk40.default.green("Active") : import_chalk40.default.red("Inactive")}
129852
129891
  Size: ${(0, import_bytes3.default)(store2.store.size)}${regionInfo}
129853
- Created At: ${(0, import_date_fns.format)(new Date(store2.store.createdAt), dateTimeFormat3)}
129854
- Updated At: ${(0, import_date_fns.format)(new Date(store2.store.updatedAt), dateTimeFormat3)}
129892
+ Created At: ${(0, import_date_fns.format)(new Date(store2.store.createdAt), dateTimeFormat2)}
129893
+ Updated At: ${(0, import_date_fns.format)(new Date(store2.store.updatedAt), dateTimeFormat2)}
129855
129894
  `
129856
129895
  );
129857
129896
  } catch (err) {
@@ -178810,7 +178849,13 @@ async function logs(client2) {
178810
178849
  }
178811
178850
  return 1;
178812
178851
  }
178813
- printDisclaimer(deployment);
178852
+ output_manager_default.print(
178853
+ `Displaying runtime logs for deployment ${deployment.url} (${import_chalk106.default.dim(
178854
+ deployment.id
178855
+ )}) starting from ${import_chalk106.default.bold((0, import_format3.default)(Date.now(), DATE_TIME_FORMAT))}
178856
+
178857
+ `
178858
+ );
178814
178859
  const abortController = new AbortController();
178815
178860
  return await displayRuntimeLogs(
178816
178861
  client2,
@@ -178822,19 +178867,7 @@ async function logs(client2) {
178822
178867
  abortController
178823
178868
  );
178824
178869
  }
178825
- function printDisclaimer(deployment) {
178826
- output_manager_default.warn(
178827
- `This command now displays runtime logs. To access your build logs, run \`vercel inspect --logs ${deployment.url}\``
178828
- );
178829
- output_manager_default.print(
178830
- `Displaying runtime logs for deployment ${deployment.url} (${import_chalk106.default.dim(
178831
- deployment.id
178832
- )}) starting from ${import_chalk106.default.bold((0, import_format3.default)(Date.now(), dateTimeFormat2))}
178833
-
178834
- `
178835
- );
178836
- }
178837
- var import_error_utils30, import_chalk106, import_format3, deprecatedFlags, dateTimeFormat2;
178870
+ var import_error_utils30, import_chalk106, import_format3, deprecatedFlags, DATE_TIME_FORMAT;
178838
178871
  var init_logs3 = __esm({
178839
178872
  "src/commands/logs/index.ts"() {
178840
178873
  "use strict";
@@ -178864,7 +178897,7 @@ var init_logs3 = __esm({
178864
178897
  "--until",
178865
178898
  "--output"
178866
178899
  ];
178867
- dateTimeFormat2 = "MMM dd HH:mm:ss.SS";
178900
+ DATE_TIME_FORMAT = "MMM dd HH:mm:ss.SS";
178868
178901
  }
178869
178902
  });
178870
178903
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel",
3
- "version": "46.0.0",
3
+ "version": "46.0.1",
4
4
  "preferGlobal": true,
5
5
  "license": "Apache-2.0",
6
6
  "description": "The command-line interface for Vercel",
@@ -84,8 +84,8 @@
84
84
  "@vercel/client": "15.3.14",
85
85
  "@vercel/detect-agent": "0.2.0",
86
86
  "@vercel/error-utils": "2.0.3",
87
- "@vercel/frameworks": "3.7.7",
88
- "@vercel/fs-detectors": "5.4.13",
87
+ "@vercel/frameworks": "3.8.0",
88
+ "@vercel/fs-detectors": "5.4.14",
89
89
  "@vercel/routing-utils": "5.1.1",
90
90
  "@vitest/expect": "2.1.3",
91
91
  "ajv": "6.12.3",
@@ -165,8 +165,8 @@
165
165
  "write-json-file": "2.2.0",
166
166
  "xdg-app-paths": "5.1.0",
167
167
  "yauzl-promise": "2.1.3",
168
- "@vercel-internals/get-package-json": "1.0.0",
169
168
  "@vercel-internals/constants": "1.0.4",
169
+ "@vercel-internals/get-package-json": "1.0.0",
170
170
  "@vercel-internals/types": "3.0.6"
171
171
  },
172
172
  "scripts": {