vercel 39.0.3 → 39.0.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.
Files changed (2) hide show
  1. package/dist/index.js +10 -21
  2. package/package.json +8 -8
package/dist/index.js CHANGED
@@ -33587,7 +33587,7 @@ var require_package = __commonJS2({
33587
33587
  "../client/package.json"(exports2, module2) {
33588
33588
  module2.exports = {
33589
33589
  name: "@vercel/client",
33590
- version: "13.4.16",
33590
+ version: "13.4.17",
33591
33591
  main: "dist/index.js",
33592
33592
  typings: "dist/index.d.ts",
33593
33593
  homepage: "https://vercel.com",
@@ -33625,7 +33625,7 @@ var require_package = __commonJS2({
33625
33625
  },
33626
33626
  dependencies: {
33627
33627
  "@vercel/build-utils": "8.4.12",
33628
- "@vercel/error-utils": "2.0.2",
33628
+ "@vercel/error-utils": "2.0.3",
33629
33629
  "@vercel/routing-utils": "3.1.0",
33630
33630
  "async-retry": "1.2.3",
33631
33631
  "async-sema": "3.0.0",
@@ -107121,16 +107121,9 @@ var init_generate_cert_for_deploy = __esm({
107121
107121
  });
107122
107122
 
107123
107123
  // src/util/deploy/create-deploy.ts
107124
- async function createDeploy(client2, now, contextName, path11, createArgs, org, isSettingUpProject, cwd, archive) {
107124
+ async function createDeploy(client2, now, contextName, path11, createArgs, org, isSettingUpProject, archive) {
107125
107125
  try {
107126
- return await now.create(
107127
- path11,
107128
- createArgs,
107129
- org,
107130
- isSettingUpProject,
107131
- cwd,
107132
- archive
107133
- );
107126
+ return await now.create(path11, createArgs, org, isSettingUpProject, archive);
107134
107127
  } catch (err) {
107135
107128
  if (isAPIError(err)) {
107136
107129
  if (err.code === "rate_limited") {
@@ -107193,8 +107186,7 @@ async function createDeploy(client2, now, contextName, path11, createArgs, org,
107193
107186
  path11,
107194
107187
  createArgs,
107195
107188
  org,
107196
- isSettingUpProject,
107197
- cwd
107189
+ isSettingUpProject
107198
107190
  );
107199
107191
  }
107200
107192
  if (err.code === "not_found") {
@@ -110359,7 +110351,7 @@ var init_util = __esm({
110359
110351
  noWait,
110360
110352
  withLogs,
110361
110353
  autoAssignCustomDomains
110362
- }, org, isSettingUpProject, cwd, archive) {
110354
+ }, org, isSettingUpProject, archive) {
110363
110355
  let hashes = {};
110364
110356
  const uploadStamp = stamp_default();
110365
110357
  let requestBody = {
@@ -110724,8 +110716,7 @@ async function setupAndLink(client2, path11, {
110724
110716
  sourcePath,
110725
110717
  createArgs,
110726
110718
  org,
110727
- true,
110728
- path11
110719
+ true
110729
110720
  );
110730
110721
  if (!deployment || !("code" in deployment) || deployment.code !== "missing_project_settings") {
110731
110722
  output_manager_default.error("Failed to detect project settings. Please try again.");
@@ -125290,10 +125281,9 @@ var init_deploy2 = __esm({
125290
125281
  }
125291
125282
  const contextName = org.slug;
125292
125283
  client2.config.currentTeam = org.type === "team" ? org.id : void 0;
125293
- const sourcePath = rootDirectory && !sourceFilesOutsideRootDirectory ? (0, import_path31.join)(cwd, rootDirectory) : cwd;
125294
125284
  if (rootDirectory && await validateRootDirectory(
125295
125285
  cwd,
125296
- sourcePath,
125286
+ (0, import_path31.join)(cwd, rootDirectory),
125297
125287
  project ? `To change your Project Settings, go to https://vercel.com/${org?.slug}/${project.name}/settings` : ""
125298
125288
  ) === false) {
125299
125289
  return 1;
@@ -125457,11 +125447,10 @@ var init_deploy2 = __esm({
125457
125447
  client2,
125458
125448
  now,
125459
125449
  contextName,
125460
- sourcePath,
125450
+ cwd,
125461
125451
  createArgs,
125462
125452
  org,
125463
125453
  !project,
125464
- cwd,
125465
125454
  archive
125466
125455
  );
125467
125456
  if (deployment instanceof NotDomainOwner) {
@@ -156651,7 +156640,7 @@ init_errors_ts();
156651
156640
  init_errors_ts();
156652
156641
 
156653
156642
  // src/util/constants.ts
156654
- var SENTRY_DSN = void 0;
156643
+ var SENTRY_DSN = "https://26a24e59ba954011919a524b341b6ab5@sentry.io/1323225";
156655
156644
 
156656
156645
  // src/index.ts
156657
156646
  init_get_update_command();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel",
3
- "version": "39.0.3",
3
+ "version": "39.0.4",
4
4
  "preferGlobal": true,
5
5
  "license": "Apache-2.0",
6
6
  "description": "The command-line interface for Vercel",
@@ -23,13 +23,13 @@
23
23
  "dependencies": {
24
24
  "@vercel/build-utils": "8.4.12",
25
25
  "@vercel/fun": "1.1.0",
26
- "@vercel/go": "3.2.0",
26
+ "@vercel/go": "3.2.1",
27
27
  "@vercel/hydrogen": "1.0.9",
28
28
  "@vercel/next": "4.3.20",
29
- "@vercel/node": "3.2.24",
29
+ "@vercel/node": "3.2.25",
30
30
  "@vercel/python": "4.5.0",
31
31
  "@vercel/redwood": "2.1.8",
32
- "@vercel/remix-builder": "2.2.13",
32
+ "@vercel/remix-builder": "2.2.14",
33
33
  "@vercel/ruby": "2.1.0",
34
34
  "@vercel/static-build": "2.5.34",
35
35
  "chokidar": "3.3.1"
@@ -81,10 +81,10 @@
81
81
  "@vercel-internals/constants": "1.0.4",
82
82
  "@vercel-internals/get-package-json": "1.0.0",
83
83
  "@vercel-internals/types": "2.0.16",
84
- "@vercel/client": "13.4.16",
85
- "@vercel/error-utils": "2.0.2",
86
- "@vercel/frameworks": "3.3.0",
87
- "@vercel/fs-detectors": "5.2.10",
84
+ "@vercel/client": "13.4.17",
85
+ "@vercel/error-utils": "2.0.3",
86
+ "@vercel/frameworks": "3.3.1",
87
+ "@vercel/fs-detectors": "5.2.11",
88
88
  "@vercel/routing-utils": "3.1.0",
89
89
  "@vitest/expect": "2.1.3",
90
90
  "ajv": "6.12.2",