vercel 44.6.3 → 44.6.5

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 +13 -2
  2. package/package.json +6 -6
package/dist/index.js CHANGED
@@ -126909,7 +126909,10 @@ async function linkFolderToProject(client2, path11, projectLink, projectName, or
126909
126909
  }
126910
126910
  await writeFile2(
126911
126911
  (0, import_path15.join)(path11, VERCEL_DIR2, VERCEL_DIR_PROJECT),
126912
- JSON.stringify(projectLink)
126912
+ JSON.stringify({
126913
+ ...projectLink,
126914
+ projectName
126915
+ })
126913
126916
  );
126914
126917
  await writeReadme(path11);
126915
126918
  const isGitIgnoreUpdated = await addToGitIgnore(path11);
@@ -126962,6 +126965,10 @@ var init_link2 = __esm({
126962
126965
  orgId: {
126963
126966
  type: "string",
126964
126967
  minLength: 1
126968
+ },
126969
+ projectName: {
126970
+ type: "string",
126971
+ minLength: 1
126965
126972
  }
126966
126973
  }
126967
126974
  };
@@ -144244,6 +144251,7 @@ async function writeProjectSettings(cwd, project, org, isRepoLinked) {
144244
144251
  const projectLinkAndSettings = {
144245
144252
  projectId: isRepoLinked ? void 0 : project.id,
144246
144253
  orgId: isRepoLinked ? void 0 : org.id,
144254
+ projectName: isRepoLinked ? void 0 : project.name,
144247
144255
  settings: {
144248
144256
  createdAt: project.createdAt,
144249
144257
  framework: project.framework,
@@ -166760,6 +166768,9 @@ async function getBuildMatches(vercelConfig, cwd, devServer, fileList) {
166760
166768
  if (src[0] === "/") {
166761
166769
  src = src.substring(1);
166762
166770
  }
166771
+ if (buildConfig.config?.framework === "hono") {
166772
+ src = "package.json";
166773
+ }
166763
166774
  const mapToEntrypoint = /* @__PURE__ */ new Map();
166764
166775
  const extensionless = devServer.getExtensionlessFile(src);
166765
166776
  if (extensionless) {
@@ -183593,7 +183604,7 @@ init_errors_ts();
183593
183604
  init_errors_ts();
183594
183605
 
183595
183606
  // src/util/constants.ts
183596
- var SENTRY_DSN = "https://26a24e59ba954011919a524b341b6ab5@sentry.io/1323225";
183607
+ var SENTRY_DSN = void 0;
183597
183608
 
183598
183609
  // src/index.ts
183599
183610
  init_get_update_command();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel",
3
- "version": "44.6.3",
3
+ "version": "44.6.5",
4
4
  "preferGlobal": true,
5
5
  "license": "Apache-2.0",
6
6
  "description": "The command-line interface for Vercel",
@@ -25,11 +25,11 @@
25
25
  "@vercel/build-utils": "11.0.0",
26
26
  "@vercel/fun": "1.1.6",
27
27
  "@vercel/go": "3.2.2",
28
- "@vercel/hono": "0.0.4",
28
+ "@vercel/hono": "0.0.5",
29
29
  "@vercel/hydrogen": "1.2.3",
30
- "@vercel/next": "4.10.8",
30
+ "@vercel/next": "4.10.9",
31
31
  "@vercel/node": "5.3.7",
32
- "@vercel/python": "4.8.0",
32
+ "@vercel/python": "5.0.0",
33
33
  "@vercel/redwood": "2.3.4",
34
34
  "@vercel/remix-builder": "5.4.10",
35
35
  "@vercel/ruby": "2.2.1",
@@ -164,8 +164,8 @@
164
164
  "xdg-app-paths": "5.1.0",
165
165
  "yauzl-promise": "2.1.3",
166
166
  "@vercel-internals/constants": "1.0.4",
167
- "@vercel-internals/get-package-json": "1.0.0",
168
- "@vercel-internals/types": "3.0.6"
167
+ "@vercel-internals/types": "3.0.6",
168
+ "@vercel-internals/get-package-json": "1.0.0"
169
169
  },
170
170
  "scripts": {
171
171
  "test": "jest --reporters=default --reporters=jest-junit --env node --verbose --bail",