vercel 48.10.2 → 48.10.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 +87 -42
  2. package/package.json +14 -15
package/dist/index.js CHANGED
@@ -10057,7 +10057,8 @@ var init_emoji = __esm({
10057
10057
  link: "\u{1F517}",
10058
10058
  inspect: "\u{1F50D}",
10059
10059
  success: "\u2705",
10060
- locked: "\u{1F512}"
10060
+ locked: "\u{1F512}",
10061
+ loading: "\u23F3"
10061
10062
  };
10062
10063
  stripEmojiRegex = new RegExp(Object.values(emojiLabels).join("|"), "gi");
10063
10064
  }
@@ -49730,7 +49731,7 @@ var require_package = __commonJS2({
49730
49731
  "../client/package.json"(exports2, module2) {
49731
49732
  module2.exports = {
49732
49733
  name: "@vercel/client",
49733
- version: "17.2.4",
49734
+ version: "17.2.6",
49734
49735
  main: "dist/index.js",
49735
49736
  typings: "dist/index.d.ts",
49736
49737
  homepage: "https://vercel.com",
@@ -49769,7 +49770,7 @@ var require_package = __commonJS2({
49769
49770
  vitest: "2.0.1"
49770
49771
  },
49771
49772
  dependencies: {
49772
- "@vercel/build-utils": "13.0.1",
49773
+ "@vercel/build-utils": "13.0.2",
49773
49774
  "@vercel/error-utils": "2.0.3",
49774
49775
  "@vercel/microfrontends": "1.2.2",
49775
49776
  "@vercel/routing-utils": "5.2.2",
@@ -58237,8 +58238,8 @@ var require_utils14 = __commonJS2({
58237
58238
  return ignored;
58238
58239
  };
58239
58240
  fileList = await (0, import_readdir_recursive.default)(path11, [ignores2]);
58241
+ const refs = /* @__PURE__ */ new Set();
58240
58242
  if (prebuilt) {
58241
- const refs = /* @__PURE__ */ new Set();
58242
58243
  const vcConfigFilePaths = fileList.filter(
58243
58244
  (file) => (0, import_path41.basename)(file) === ".vc-config.json"
58244
58245
  );
@@ -58271,9 +58272,19 @@ var require_utils14 = __commonJS2({
58271
58272
  } catch (e2) {
58272
58273
  debug2(`Error detecting microfrontend config: ${e2}`);
58273
58274
  }
58274
- if (refs.size > 0) {
58275
- fileList = fileList.concat(Array.from(refs));
58275
+ }
58276
+ try {
58277
+ const routesJsonPath = (0, import_path41.join)(path11, ".vercel", "routes.json");
58278
+ const routesJsonContent = await maybeRead(routesJsonPath, null);
58279
+ if (routesJsonContent !== null) {
58280
+ refs.add(routesJsonPath);
58281
+ debug2("Including .vercel/routes.json in deployment");
58276
58282
  }
58283
+ } catch (e2) {
58284
+ debug2(`Error checking for .vercel/routes.json: ${e2}`);
58285
+ }
58286
+ if (refs.size > 0) {
58287
+ fileList = fileList.concat(Array.from(refs));
58277
58288
  }
58278
58289
  debug2(`Found ${fileList.length} files in the specified directory`);
58279
58290
  } else if (Array.isArray(path11)) {
@@ -150884,6 +150895,9 @@ async function getDeploymentUrlById(client2, deploymentIdOrUrl, accountId) {
150884
150895
  return null;
150885
150896
  }
150886
150897
  }
150898
+ if (deploymentIdOrUrl.includes("vercel.app")) {
150899
+ return `https://${deploymentIdOrUrl}`;
150900
+ }
150887
150901
  let fullDeploymentId = deploymentIdOrUrl;
150888
150902
  if (!fullDeploymentId.startsWith("dpl_")) {
150889
150903
  fullDeploymentId = `dpl_${deploymentIdOrUrl}`;
@@ -151839,7 +151853,7 @@ async function processDeployment({
151839
151853
  `${isProdDeployment ? "Production" : "Preview"}: ${import_chalk65.default.bold(
151840
151854
  previewUrl
151841
151855
  )} ${deployStamp()}`,
151842
- emoji("success")
151856
+ emoji("loading")
151843
151857
  ) + `
151844
151858
  `
151845
151859
  );
@@ -151882,6 +151896,19 @@ async function processDeployment({
151882
151896
  return event.payload;
151883
151897
  }
151884
151898
  if (event.type === "ready" && (event.payload.checksState ? event.payload.checksState === "completed" : true) && !withLogs) {
151899
+ stopSpinner();
151900
+ process.stderr.write(eraseLines(2));
151901
+ const isProdDeployment = event.payload.target === "production";
151902
+ const previewUrl = `https://${event.payload.url}`;
151903
+ output_manager_default.print(
151904
+ prependEmoji(
151905
+ `${isProdDeployment ? "Production" : "Preview"}: ${import_chalk65.default.bold(
151906
+ previewUrl
151907
+ )} ${deployStamp()}`,
151908
+ emoji("success")
151909
+ ) + `
151910
+ `
151911
+ );
151885
151912
  output_manager_default.spinner("Completing", 0);
151886
151913
  }
151887
151914
  if (event.type === "checks-running" && !withLogs) {
@@ -151946,6 +151973,7 @@ var init_process_deployment = __esm({
151946
151973
  init_progress();
151947
151974
  init_ua();
151948
151975
  init_output_manager();
151976
+ init_erase_lines();
151949
151977
  init_get_project_by_id_or_name();
151950
151978
  archiveSuggestionText = "Try using `--archive=tgz` to limit the amount of files you upload.";
151951
151979
  UploadErrorMissingArchive = class extends Error {
@@ -158039,12 +158067,12 @@ var require_requires_port = __commonJS2({
158039
158067
  }
158040
158068
  });
158041
158069
 
158042
- // ../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/common.js
158070
+ // ../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/common.js
158043
158071
  var require_common12 = __commonJS2({
158044
- "../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/common.js"(exports2) {
158072
+ "../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/common.js"(exports2) {
158045
158073
  var common2 = exports2;
158046
158074
  var url3 = require("url");
158047
- var extend = require("util")._extend;
158075
+ var extend = Object.assign;
158048
158076
  var required = require_requires_port();
158049
158077
  var upgradeHeader = /(^|,)\s*upgrade\s*($|,)/i;
158050
158078
  var isSSL = /^https|wss/;
@@ -158113,13 +158141,17 @@ var require_common12 = __commonJS2({
158113
158141
  return Boolean(req.connection.encrypted || req.connection.pair);
158114
158142
  };
158115
158143
  common2.urlJoin = function() {
158116
- var args2 = Array.prototype.slice.call(arguments), lastIndex = args2.length - 1, last = args2[lastIndex], lastSegs = last.split("?"), retSegs;
158117
- args2[lastIndex] = lastSegs.shift();
158118
- retSegs = [
158119
- args2.filter(Boolean).join("/").replace(/\/+/g, "/").replace("http:/", "http://").replace("https:/", "https://")
158120
- ];
158121
- retSegs.push.apply(retSegs, lastSegs);
158122
- return retSegs.join("?");
158144
+ var args2 = Array.prototype.slice.call(arguments), queryParams = [], queryParamRaw = "", retSegs;
158145
+ args2.forEach((url4, index) => {
158146
+ var qpStart = url4.indexOf("?");
158147
+ if (qpStart !== -1) {
158148
+ queryParams.push(url4.substring(qpStart + 1));
158149
+ args2[index] = url4.substring(0, qpStart);
158150
+ }
158151
+ });
158152
+ queryParamRaw = queryParams.filter(Boolean).join("&");
158153
+ retSegs = args2.filter(Boolean).join("/").replace(/\/+/g, "/").replace("http:/", "http://").replace("https:/", "https://");
158154
+ return queryParamRaw ? retSegs + "?" + queryParamRaw : retSegs;
158123
158155
  };
158124
158156
  common2.rewriteCookieProperty = function rewriteCookieProperty(header, config2, property) {
158125
158157
  if (Array.isArray(header)) {
@@ -158149,9 +158181,9 @@ var require_common12 = __commonJS2({
158149
158181
  }
158150
158182
  });
158151
158183
 
158152
- // ../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/passes/web-outgoing.js
158184
+ // ../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/passes/web-outgoing.js
158153
158185
  var require_web_outgoing = __commonJS2({
158154
- "../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/passes/web-outgoing.js"(exports2, module2) {
158186
+ "../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/passes/web-outgoing.js"(exports2, module2) {
158155
158187
  var url3 = require("url");
158156
158188
  var common2 = require_common12();
158157
158189
  var redirectRegex = /^201|30(1|2|7|8)$/;
@@ -159363,9 +159395,9 @@ var require_follow_redirects = __commonJS2({
159363
159395
  }
159364
159396
  });
159365
159397
 
159366
- // ../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/passes/web-incoming.js
159398
+ // ../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/passes/web-incoming.js
159367
159399
  var require_web_incoming = __commonJS2({
159368
- "../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/passes/web-incoming.js"(exports2, module2) {
159400
+ "../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/passes/web-incoming.js"(exports2, module2) {
159369
159401
  var httpNative = require("http");
159370
159402
  var httpsNative = require("https");
159371
159403
  var web_o = require_web_outgoing();
@@ -159375,6 +159407,10 @@ var require_web_incoming = __commonJS2({
159375
159407
  return web_o[pass];
159376
159408
  });
159377
159409
  var nativeAgents = { http: httpNative, https: httpsNative };
159410
+ var supportsAbortedEvent = function() {
159411
+ var ver = process.versions.node.split(".").map(Number);
159412
+ return ver[0] <= 14 || ver[0] === 15 && ver[1] <= 4;
159413
+ }();
159378
159414
  module2.exports = {
159379
159415
  /**
159380
159416
  * Sets `content-length` to '0' if request is of DELETE type.
@@ -159469,9 +159505,18 @@ var require_web_incoming = __commonJS2({
159469
159505
  proxyReq.abort();
159470
159506
  });
159471
159507
  }
159472
- req.on("aborted", function() {
159473
- proxyReq.abort();
159474
- });
159508
+ if (supportsAbortedEvent) {
159509
+ req.on("aborted", function() {
159510
+ proxyReq.abort();
159511
+ });
159512
+ } else {
159513
+ res.on("close", function() {
159514
+ var aborted = !res.writableFinished;
159515
+ if (aborted) {
159516
+ proxyReq.abort();
159517
+ }
159518
+ });
159519
+ }
159475
159520
  var proxyError = createErrorHandler(proxyReq, options.target);
159476
159521
  req.on("error", proxyError);
159477
159522
  proxyReq.on("error", proxyError);
@@ -159517,9 +159562,9 @@ var require_web_incoming = __commonJS2({
159517
159562
  }
159518
159563
  });
159519
159564
 
159520
- // ../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/passes/ws-incoming.js
159565
+ // ../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/passes/ws-incoming.js
159521
159566
  var require_ws_incoming = __commonJS2({
159522
- "../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/passes/ws-incoming.js"(exports2, module2) {
159567
+ "../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/passes/ws-incoming.js"(exports2, module2) {
159523
159568
  var http3 = require("http");
159524
159569
  var https = require("https");
159525
159570
  var common2 = require_common12();
@@ -159610,7 +159655,7 @@ var require_ws_incoming = __commonJS2({
159610
159655
  server.emit("close", proxyRes, proxySocket, proxyHead);
159611
159656
  });
159612
159657
  socket.on("error", function() {
159613
- proxySocket.end();
159658
+ proxySocket.destroy();
159614
159659
  });
159615
159660
  common2.setupSocket(proxySocket);
159616
159661
  if (proxyHead && proxyHead.length)
@@ -159634,11 +159679,11 @@ var require_ws_incoming = __commonJS2({
159634
159679
  }
159635
159680
  });
159636
159681
 
159637
- // ../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/index.js
159682
+ // ../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/index.js
159638
159683
  var require_http_proxy = __commonJS2({
159639
- "../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy/index.js"(exports2, module2) {
159684
+ "../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy/index.js"(exports2, module2) {
159640
159685
  var httpProxy2 = module2.exports;
159641
- var extend = require("util")._extend;
159686
+ var extend = Object.assign;
159642
159687
  var parse_url = require("url").parse;
159643
159688
  var EE3 = require_eventemitter3();
159644
159689
  var http3 = require("http");
@@ -159755,9 +159800,9 @@ var require_http_proxy = __commonJS2({
159755
159800
  }
159756
159801
  });
159757
159802
 
159758
- // ../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy.js
159803
+ // ../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy.js
159759
159804
  var require_http_proxy2 = __commonJS2({
159760
- "../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/lib/http-proxy.js"(exports2, module2) {
159805
+ "../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/lib/http-proxy.js"(exports2, module2) {
159761
159806
  var ProxyServer = require_http_proxy().Server;
159762
159807
  function createProxyServer(options) {
159763
159808
  return new ProxyServer(options);
@@ -159769,9 +159814,9 @@ var require_http_proxy2 = __commonJS2({
159769
159814
  }
159770
159815
  });
159771
159816
 
159772
- // ../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/index.js
159773
- var require_http_proxy3 = __commonJS2({
159774
- "../../node_modules/.pnpm/http-proxy@1.18.1_debug@3.1.0/node_modules/http-proxy/index.js"(exports2, module2) {
159817
+ // ../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/index.js
159818
+ var require_http_proxy_node16 = __commonJS2({
159819
+ "../../node_modules/.pnpm/http-proxy-node16@1.0.6_debug@3.1.0/node_modules/http-proxy-node16/index.js"(exports2, module2) {
159775
159820
  module2.exports = require_http_proxy2();
159776
159821
  }
159777
159822
  });
@@ -171088,7 +171133,7 @@ function buildMatchEquals(a, b) {
171088
171133
  return false;
171089
171134
  return true;
171090
171135
  }
171091
- var import_url15, import_http3, import_fs_extra21, import_ms13, import_chalk70, import_node_fetch6, import_pluralize9, import_raw_body, import_async_listen3, import_minimatch4, import_http_proxy, import_crypto2, import_serve_handler, import_chokidar, import_dotenv2, import_path35, import_once, import_directory, import_get_port, import_is_port_reachable, import_fast_deep_equal, import_npm_package_arg2, import_json_parse_better_errors3, import_client12, import_routing_utils5, import_build_utils17, import_fs_detectors6, import_frameworks6, import_error_utils21, frontendRuntimeSet, DEV_SERVER_PORT_BIND_TIMEOUT, DevServer;
171136
+ var import_url15, import_http3, import_fs_extra21, import_ms13, import_chalk70, import_node_fetch6, import_pluralize9, import_raw_body, import_async_listen3, import_minimatch4, import_http_proxy_node16, import_crypto2, import_serve_handler, import_chokidar, import_dotenv2, import_path35, import_once, import_directory, import_get_port, import_is_port_reachable, import_fast_deep_equal, import_npm_package_arg2, import_json_parse_better_errors3, import_client12, import_routing_utils5, import_build_utils17, import_fs_detectors6, import_frameworks6, import_error_utils21, frontendRuntimeSet, DEV_SERVER_PORT_BIND_TIMEOUT, DevServer;
171092
171137
  var init_server = __esm({
171093
171138
  "src/util/dev/server.ts"() {
171094
171139
  "use strict";
@@ -171102,7 +171147,7 @@ var init_server = __esm({
171102
171147
  import_raw_body = __toESM3(require_raw_body());
171103
171148
  import_async_listen3 = __toESM3(require_dist6());
171104
171149
  import_minimatch4 = __toESM3(require_minimatch2());
171105
- import_http_proxy = __toESM3(require_http_proxy3());
171150
+ import_http_proxy_node16 = __toESM3(require_http_proxy_node16());
171106
171151
  import_crypto2 = require("crypto");
171107
171152
  import_serve_handler = __toESM3(require_src4());
171108
171153
  import_chokidar = require("chokidar");
@@ -171806,7 +171851,7 @@ Please ensure that ${cmd(err.path)} is properly installed`;
171806
171851
  this.caseSensitive = false;
171807
171852
  this.apiDir = null;
171808
171853
  this.apiExtensions = /* @__PURE__ */ new Set();
171809
- this.proxy = import_http_proxy.default.createProxyServer({
171854
+ this.proxy = import_http_proxy_node16.default.createProxyServer({
171810
171855
  changeOrigin: true,
171811
171856
  ws: true,
171812
171857
  xfwd: true
@@ -189219,7 +189264,7 @@ raw-body/index.js:
189219
189264
  * MIT Licensed
189220
189265
  *)
189221
189266
 
189222
- http-proxy/lib/http-proxy/passes/web-outgoing.js:
189267
+ http-proxy-node16/lib/http-proxy/passes/web-outgoing.js:
189223
189268
  (*!
189224
189269
  * Array of passes.
189225
189270
  *
@@ -189228,7 +189273,7 @@ http-proxy/lib/http-proxy/passes/web-outgoing.js:
189228
189273
  * flexible.
189229
189274
  *)
189230
189275
 
189231
- http-proxy/lib/http-proxy/passes/web-incoming.js:
189276
+ http-proxy-node16/lib/http-proxy/passes/web-incoming.js:
189232
189277
  (*!
189233
189278
  * Array of passes.
189234
189279
  *
@@ -189237,7 +189282,7 @@ http-proxy/lib/http-proxy/passes/web-incoming.js:
189237
189282
  * flexible.
189238
189283
  *)
189239
189284
 
189240
- http-proxy/lib/http-proxy/passes/ws-incoming.js:
189285
+ http-proxy-node16/lib/http-proxy/passes/ws-incoming.js:
189241
189286
  (*!
189242
189287
  * Array of passes.
189243
189288
  *
@@ -189246,7 +189291,7 @@ http-proxy/lib/http-proxy/passes/ws-incoming.js:
189246
189291
  * flexible.
189247
189292
  *)
189248
189293
 
189249
- http-proxy/index.js:
189294
+ http-proxy-node16/index.js:
189250
189295
  (*!
189251
189296
  * Caron dimonio, con occhi di bragia
189252
189297
  * loro accennando, tutte le raccoglie;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel",
3
- "version": "48.10.2",
3
+ "version": "48.10.4",
4
4
  "preferGlobal": true,
5
5
  "license": "Apache-2.0",
6
6
  "description": "The command-line interface for Vercel",
@@ -22,26 +22,26 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "@vercel/blob": "1.0.2",
25
- "@vercel/build-utils": "13.0.1",
25
+ "@vercel/build-utils": "13.0.2",
26
26
  "@vercel/fun": "1.1.6",
27
27
  "@vercel/go": "3.2.3",
28
- "@vercel/elysia": "0.1.4",
29
- "@vercel/express": "0.1.7",
30
- "@vercel/fastify": "0.1.7",
31
- "@vercel/hono": "0.2.7",
32
- "@vercel/h3": "0.1.13",
28
+ "@vercel/elysia": "0.1.5",
29
+ "@vercel/express": "0.1.9",
30
+ "@vercel/fastify": "0.1.8",
31
+ "@vercel/hono": "0.2.8",
32
+ "@vercel/h3": "0.1.14",
33
33
  "@vercel/hydrogen": "1.3.2",
34
34
  "@vercel/next": "4.15.3",
35
- "@vercel/node": "5.5.6",
35
+ "@vercel/node": "5.5.7",
36
36
  "@vercel/python": "6.0.5",
37
37
  "@vercel/redwood": "2.4.2",
38
38
  "@vercel/remix-builder": "5.5.2",
39
39
  "@vercel/ruby": "2.2.2",
40
- "@vercel/static-build": "2.8.6",
40
+ "@vercel/static-build": "2.8.7",
41
41
  "chokidar": "4.0.0",
42
42
  "jose": "5.9.6",
43
43
  "@vercel/detect-agent": "1.0.0",
44
- "@vercel/backends": "0.0.7"
44
+ "@vercel/backends": "0.0.9"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@alex_neo/jest-expect-message": "1.0.5",
@@ -63,7 +63,6 @@
63
63
  "@types/dotenv": "6.1.1",
64
64
  "@types/escape-html": "0.0.20",
65
65
  "@types/fs-extra": "9.0.13",
66
- "@types/http-proxy": "1.16.2",
67
66
  "@types/ini": "1.3.31",
68
67
  "@types/jest": "27.4.1",
69
68
  "@types/jest-expect-message": "1.0.3",
@@ -86,7 +85,7 @@
86
85
  "@types/which": "3.0.0",
87
86
  "@types/write-json-file": "2.2.1",
88
87
  "@types/yauzl-promise": "2.1.0",
89
- "@vercel/client": "17.2.4",
88
+ "@vercel/client": "17.2.6",
90
89
  "@vercel/error-utils": "2.0.3",
91
90
  "@vercel/frameworks": "3.15.3",
92
91
  "@vercel/fs-detectors": "5.7.6",
@@ -122,7 +121,7 @@
122
121
  "fs-extra": "10.0.0",
123
122
  "get-port": "5.1.1",
124
123
  "git-last-commit": "1.0.1",
125
- "http-proxy": "1.18.1",
124
+ "http-proxy-node16": "1.0.6",
126
125
  "ini": "3.0.0",
127
126
  "is-docker": "2.2.1",
128
127
  "is-port-reachable": "3.1.0",
@@ -171,8 +170,8 @@
171
170
  "xdg-app-paths": "5.1.0",
172
171
  "yauzl-promise": "2.1.3",
173
172
  "@vercel-internals/constants": "1.0.4",
174
- "@vercel-internals/types": "3.0.6",
175
- "@vercel-internals/get-package-json": "1.0.0"
173
+ "@vercel-internals/get-package-json": "1.0.0",
174
+ "@vercel-internals/types": "3.0.6"
176
175
  },
177
176
  "scripts": {
178
177
  "test": "jest --reporters=default --reporters=jest-junit --env node --verbose --bail",