@shopify/create-app 3.80.7 → 3.81.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 (36) hide show
  1. package/dist/{chunk-3INFDIM3.js → chunk-2YVW3FGK.js} +42 -507
  2. package/dist/{chunk-4CUOCZWA.js → chunk-4S4CSWD6.js} +15 -10
  3. package/dist/{chunk-YD5O6X2N.js → chunk-4WMN57JE.js} +26 -26
  4. package/dist/{chunk-TMCHXNDX.js → chunk-6EPG6YJ6.js} +32 -33
  5. package/dist/{chunk-3WLCDYDH.js → chunk-C4ABWPZH.js} +275 -76
  6. package/dist/{chunk-TJM3YBLQ.js → chunk-CTFDRWUN.js} +15 -12
  7. package/dist/{chunk-25SITN3I.js → chunk-ILI5X6PP.js} +2 -2
  8. package/dist/{chunk-OB3TW53B.js → chunk-TT3RANTU.js} +240 -216
  9. package/dist/{chunk-LQ2ZKVR6.js → chunk-UMUTXITN.js} +87 -4
  10. package/dist/{chunk-3AUF6SFV.js → chunk-UQP4ZLNS.js} +5 -5
  11. package/dist/{chunk-LH5HVQQC.js → chunk-VMUIREUQ.js} +2 -2
  12. package/dist/{chunk-CDBXAE2F.js → chunk-Y2JP6WFP.js} +99 -11
  13. package/dist/{custom-oclif-loader-6FO7YJKC.js → custom-oclif-loader-NCDQWHDP.js} +7 -8
  14. package/dist/{del-KB2YLEEB.js → del-MOZRBB7Y.js} +4 -4
  15. package/dist/{devtools-J4QAI6HR.js → devtools-LDCSRUXB.js} +4 -4
  16. package/dist/{error-handler-4H2Q3GJ6.js → error-handler-DQ6X5YKA.js} +11 -12
  17. package/dist/hooks/postrun.js +9 -10
  18. package/dist/hooks/prerun.js +9 -10
  19. package/dist/{http-proxy-KGLXPNEY.js → http-proxy-LHSVRGJ5.js} +14 -10
  20. package/dist/index.js +11767 -5697
  21. package/dist/index.test.js +10022 -8822
  22. package/dist/lib-UJ7YNLH4.js +11 -0
  23. package/dist/{local-BLTCJNBH.js → local-EXTM5UPB.js} +9 -14
  24. package/dist/{magic-string.es-BSVDQOZI.js → magic-string.es-UZAAPNRE.js} +42 -36
  25. package/dist/{node-package-manager-XGVFWJHO.js → node-package-manager-4LLKYFW5.js} +8 -9
  26. package/dist/{out-5KP5WGIK.js → out-NKJPLKLB.js} +2 -2
  27. package/dist/{path-GWAZZN2N.js → path-COZT77T2.js} +2 -3
  28. package/dist/toml_patch_bg.wasm +0 -0
  29. package/dist/tsconfig.tsbuildinfo +1 -1
  30. package/dist/{ui-4M5QZZEG.js → ui-6L3VQT6P.js} +7 -10
  31. package/oclif.manifest.json +1 -1
  32. package/package.json +6 -7
  33. package/dist/chunk-3I3GQNEW.js +0 -95
  34. package/dist/chunk-ZUCWDIGE.js +0 -111
  35. package/dist/lib-TMSQAG3Q.js +0 -11
  36. package/dist/toml-patch-wasm-J5VGG6WG.js +0 -140
@@ -1,6 +1,3 @@
1
- import {
2
- require_supports_color
3
- } from "./chunk-3I3GQNEW.js";
4
1
  import {
5
2
  __commonJS,
6
3
  __require,
@@ -334,6 +331,90 @@ var require_browser = __commonJS({
334
331
  }
335
332
  });
336
333
 
334
+ // ../../node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js
335
+ var require_has_flag = __commonJS({
336
+ "../../node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js"(exports, module) {
337
+ "use strict";
338
+ init_cjs_shims();
339
+ module.exports = (flag, argv = process.argv) => {
340
+ let prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--", position = argv.indexOf(prefix + flag), terminatorPosition = argv.indexOf("--");
341
+ return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
342
+ };
343
+ }
344
+ });
345
+
346
+ // ../../node_modules/.pnpm/supports-color@8.1.1/node_modules/supports-color/index.js
347
+ var require_supports_color = __commonJS({
348
+ "../../node_modules/.pnpm/supports-color@8.1.1/node_modules/supports-color/index.js"(exports, module) {
349
+ "use strict";
350
+ init_cjs_shims();
351
+ var os = __require("os"), tty = __require("tty"), hasFlag = require_has_flag(), { env } = process, flagForceColor;
352
+ hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never") ? flagForceColor = 0 : (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) && (flagForceColor = 1);
353
+ function envForceColor() {
354
+ if ("FORCE_COLOR" in env)
355
+ return env.FORCE_COLOR === "true" ? 1 : env.FORCE_COLOR === "false" ? 0 : env.FORCE_COLOR.length === 0 ? 1 : Math.min(Number.parseInt(env.FORCE_COLOR, 10), 3);
356
+ }
357
+ function translateLevel(level) {
358
+ return level === 0 ? !1 : {
359
+ level,
360
+ hasBasic: !0,
361
+ has256: level >= 2,
362
+ has16m: level >= 3
363
+ };
364
+ }
365
+ function supportsColor(haveStream, { streamIsTTY, sniffFlags = !0 } = {}) {
366
+ let noFlagForceColor = envForceColor();
367
+ noFlagForceColor !== void 0 && (flagForceColor = noFlagForceColor);
368
+ let forceColor = sniffFlags ? flagForceColor : noFlagForceColor;
369
+ if (forceColor === 0)
370
+ return 0;
371
+ if (sniffFlags) {
372
+ if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor"))
373
+ return 3;
374
+ if (hasFlag("color=256"))
375
+ return 2;
376
+ }
377
+ if (haveStream && !streamIsTTY && forceColor === void 0)
378
+ return 0;
379
+ let min = forceColor || 0;
380
+ if (env.TERM === "dumb")
381
+ return min;
382
+ if (process.platform === "win32") {
383
+ let osRelease = os.release().split(".");
384
+ return Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586 ? Number(osRelease[2]) >= 14931 ? 3 : 2 : 1;
385
+ }
386
+ if ("CI" in env)
387
+ return ["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI", "GITHUB_ACTIONS", "BUILDKITE", "DRONE"].some((sign) => sign in env) || env.CI_NAME === "codeship" ? 1 : min;
388
+ if ("TEAMCITY_VERSION" in env)
389
+ return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
390
+ if (env.COLORTERM === "truecolor")
391
+ return 3;
392
+ if ("TERM_PROGRAM" in env) {
393
+ let version = Number.parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
394
+ switch (env.TERM_PROGRAM) {
395
+ case "iTerm.app":
396
+ return version >= 3 ? 3 : 2;
397
+ case "Apple_Terminal":
398
+ return 2;
399
+ }
400
+ }
401
+ return /-256(color)?$/i.test(env.TERM) ? 2 : /^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM) || "COLORTERM" in env ? 1 : min;
402
+ }
403
+ function getSupportLevel(stream, options = {}) {
404
+ let level = supportsColor(stream, {
405
+ streamIsTTY: stream && stream.isTTY,
406
+ ...options
407
+ });
408
+ return translateLevel(level);
409
+ }
410
+ module.exports = {
411
+ supportsColor: getSupportLevel,
412
+ stdout: getSupportLevel({ isTTY: tty.isatty(1) }),
413
+ stderr: getSupportLevel({ isTTY: tty.isatty(2) })
414
+ };
415
+ }
416
+ });
417
+
337
418
  // ../../node_modules/.pnpm/debug@4.4.0_supports-color@8.1.1/node_modules/debug/src/node.js
338
419
  var require_node = __commonJS({
339
420
  "../../node_modules/.pnpm/debug@4.4.0_supports-color@8.1.1/node_modules/debug/src/node.js"(exports, module) {
@@ -490,7 +571,9 @@ var require_src = __commonJS({
490
571
  });
491
572
 
492
573
  export {
574
+ require_has_flag,
493
575
  require_ms,
576
+ require_supports_color,
494
577
  require_src
495
578
  };
496
- //# sourceMappingURL=chunk-LQ2ZKVR6.js.map
579
+ //# sourceMappingURL=chunk-UMUTXITN.js.map
@@ -2,12 +2,12 @@ import {
2
2
  CLI_KIT_VERSION,
3
3
  jsonOutputEnabled,
4
4
  z
5
- } from "./chunk-TMCHXNDX.js";
5
+ } from "./chunk-6EPG6YJ6.js";
6
6
  import {
7
7
  cacheRetrieve,
8
8
  cacheStore,
9
9
  versionSatisfies
10
- } from "./chunk-3WLCDYDH.js";
10
+ } from "./chunk-C4ABWPZH.js";
11
11
  import {
12
12
  AbortSilentError,
13
13
  exec,
@@ -16,7 +16,7 @@ import {
16
16
  renderError,
17
17
  renderInfo,
18
18
  renderWarning
19
- } from "./chunk-OB3TW53B.js";
19
+ } from "./chunk-TT3RANTU.js";
20
20
  import {
21
21
  init_cjs_shims
22
22
  } from "./chunk-PKR7KJ6P.js";
@@ -84,7 +84,7 @@ async function showNotificationsIfNeeded(currentSurfaces, environment = process.
84
84
  throw new AbortSilentError();
85
85
  let errorMessage = `Error showing notifications: ${error.message}`;
86
86
  outputDebug(errorMessage);
87
- let { sendErrorToBugsnag } = await import("./error-handler-4H2Q3GJ6.js");
87
+ let { sendErrorToBugsnag } = await import("./error-handler-DQ6X5YKA.js");
88
88
  await sendErrorToBugsnag(errorMessage, "unexpected_error");
89
89
  }
90
90
  }
@@ -174,4 +174,4 @@ export {
174
174
  showNotificationsIfNeeded,
175
175
  fetchNotificationsInBackground
176
176
  };
177
- //# sourceMappingURL=chunk-3AUF6SFV.js.map
177
+ //# sourceMappingURL=chunk-UQP4ZLNS.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  require_merge2,
3
3
  require_out
4
- } from "./chunk-TJM3YBLQ.js";
4
+ } from "./chunk-CTFDRWUN.js";
5
5
  import {
6
6
  __commonJS,
7
7
  __require,
@@ -666,4 +666,4 @@ export {
666
666
  require_globby,
667
667
  require_indent_string
668
668
  };
669
- //# sourceMappingURL=chunk-LH5HVQQC.js.map
669
+ //# sourceMappingURL=chunk-VMUIREUQ.js.map
@@ -1,7 +1,40 @@
1
1
  import {
2
+ __commonJS,
3
+ __require,
4
+ __toESM,
2
5
  init_cjs_shims
3
6
  } from "./chunk-PKR7KJ6P.js";
4
7
 
8
+ // ../../node_modules/.pnpm/commondir@1.0.1/node_modules/commondir/index.js
9
+ var require_commondir = __commonJS({
10
+ "../../node_modules/.pnpm/commondir@1.0.1/node_modules/commondir/index.js"(exports, module) {
11
+ init_cjs_shims();
12
+ var path2 = __require("path");
13
+ module.exports = function(basedir, relfiles) {
14
+ if (relfiles)
15
+ var files = relfiles.map(function(r) {
16
+ return path2.resolve(basedir, r);
17
+ });
18
+ else
19
+ var files = basedir;
20
+ var res = files.slice(1).reduce(function(ps, file) {
21
+ if (!file.match(/^([A-Za-z]:)?\/|\\/))
22
+ throw new Error("relative path without a basedir");
23
+ for (var xs = file.split(/\/+|\\+/), i = 0; ps[i] === xs[i] && i < Math.min(ps.length, xs.length); i++) ;
24
+ return ps.slice(0, i);
25
+ }, files[0].split(/\/+|\\+/));
26
+ return res.length > 1 ? res.join("/") : "/";
27
+ };
28
+ }
29
+ });
30
+
31
+ // ../cli-kit/dist/public/node/path.js
32
+ init_cjs_shims();
33
+ var import_commondir = __toESM(require_commondir(), 1);
34
+
35
+ // ../../node_modules/.pnpm/pathe@1.1.2/node_modules/pathe/dist/index.mjs
36
+ init_cjs_shims();
37
+
5
38
  // ../../node_modules/.pnpm/pathe@1.1.2/node_modules/pathe/dist/shared/pathe.ff20891b.mjs
6
39
  init_cjs_shims();
7
40
  var _DRIVE_LETTER_START_RE = /^[A-Za-z]:\//;
@@ -91,18 +124,73 @@ var basename = function(p, extension) {
91
124
  return extension && lastSegment.endsWith(extension) ? lastSegment.slice(0, -extension.length) : lastSegment;
92
125
  };
93
126
 
94
- // ../../node_modules/.pnpm/pathe@1.1.2/node_modules/pathe/dist/index.mjs
95
- init_cjs_shims();
127
+ // ../cli-kit/dist/public/node/path.js
128
+ import { fileURLToPath } from "url";
129
+ function joinPath(...paths) {
130
+ return join(...paths);
131
+ }
132
+ function normalizePath(path2) {
133
+ return normalize(path2);
134
+ }
135
+ function resolvePath(...paths) {
136
+ return resolve(...paths);
137
+ }
138
+ function relativePath(from, to) {
139
+ return relative(from, to);
140
+ }
141
+ function isAbsolutePath(path2) {
142
+ return isAbsolute(path2);
143
+ }
144
+ function dirname2(path2) {
145
+ return dirname(path2);
146
+ }
147
+ function basename2(path2, ext) {
148
+ return basename(path2, ext);
149
+ }
150
+ function extname2(path2) {
151
+ return extname(path2);
152
+ }
153
+ function relativizePath(path2, dir = cwd2()) {
154
+ let result = (0, import_commondir.default)([path2, dir]), relativePath2 = relative(dir, path2), relativeComponents = relativePath2.split("/").filter((component) => component === "..").length;
155
+ return result === "/" || relativePath2 === "" || relativeComponents > 2 ? path2 : relativePath2;
156
+ }
157
+ function isSubpath(mainPath, subpath) {
158
+ let relativePath2 = relative(mainPath, subpath);
159
+ return !relativePath2.startsWith("..") && !isAbsolutePath(relativePath2);
160
+ }
161
+ function moduleDirectory(moduleURL) {
162
+ return dirname2(fileURLToPath(moduleURL));
163
+ }
164
+ function cwd2() {
165
+ return normalize(process.env.INIT_CWD ? process.env.INIT_CWD : process.cwd());
166
+ }
167
+ function sniffForPath(argv = process.argv) {
168
+ let pathFlagIndex = argv.indexOf("--path");
169
+ if (pathFlagIndex === -1)
170
+ return argv.find((arg) => arg.startsWith("--path="))?.split("=")[1];
171
+ let pathFlag = argv[pathFlagIndex + 1];
172
+ if (!(!pathFlag || pathFlag.startsWith("-")))
173
+ return pathFlag;
174
+ }
175
+ function sniffForJson(argv = process.argv) {
176
+ return argv.includes("--json") || argv.includes("-j");
177
+ }
96
178
 
97
179
  export {
98
180
  delimiter,
99
- normalize,
100
- join,
101
- resolve,
102
- isAbsolute,
103
- extname,
104
- relative,
105
- dirname,
106
- basename
181
+ joinPath,
182
+ normalizePath,
183
+ resolvePath,
184
+ relativePath,
185
+ isAbsolutePath,
186
+ dirname2 as dirname,
187
+ basename2 as basename,
188
+ extname2 as extname,
189
+ relativizePath,
190
+ isSubpath,
191
+ moduleDirectory,
192
+ cwd2 as cwd,
193
+ sniffForPath,
194
+ sniffForJson
107
195
  };
108
- //# sourceMappingURL=chunk-CDBXAE2F.js.map
196
+ //# sourceMappingURL=chunk-Y2JP6WFP.js.map
@@ -1,20 +1,19 @@
1
1
  import {
2
2
  execaSync,
3
3
  fileExistsSync
4
- } from "./chunk-OB3TW53B.js";
4
+ } from "./chunk-TT3RANTU.js";
5
5
  import {
6
6
  require_lib
7
- } from "./chunk-3INFDIM3.js";
8
- import "./chunk-3I3GQNEW.js";
7
+ } from "./chunk-2YVW3FGK.js";
8
+ import "./chunk-UMUTXITN.js";
9
9
  import {
10
10
  cwd,
11
11
  joinPath,
12
12
  sniffForPath
13
- } from "./chunk-ZUCWDIGE.js";
14
- import "./chunk-CDBXAE2F.js";
13
+ } from "./chunk-Y2JP6WFP.js";
15
14
  import "./chunk-75LV6AQS.js";
16
- import "./chunk-LH5HVQQC.js";
17
- import "./chunk-TJM3YBLQ.js";
15
+ import "./chunk-VMUIREUQ.js";
16
+ import "./chunk-CTFDRWUN.js";
18
17
  import "./chunk-7IK72W75.js";
19
18
  import "./chunk-G2ZZKGSV.js";
20
19
  import {
@@ -43,4 +42,4 @@ var import_core = __toESM(require_lib(), 1), ShopifyConfig = class extends impor
43
42
  export {
44
43
  ShopifyConfig
45
44
  };
46
- //# sourceMappingURL=custom-oclif-loader-6FO7YJKC.js.map
45
+ //# sourceMappingURL=custom-oclif-loader-NCDQWHDP.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  require_glob
3
- } from "./chunk-25SITN3I.js";
3
+ } from "./chunk-ILI5X6PP.js";
4
4
  import "./chunk-SHWOPMLQ.js";
5
5
  import {
6
6
  require_graceful_fs
@@ -9,8 +9,8 @@ import {
9
9
  require_globby,
10
10
  require_indent_string,
11
11
  require_slash
12
- } from "./chunk-LH5HVQQC.js";
13
- import "./chunk-TJM3YBLQ.js";
12
+ } from "./chunk-VMUIREUQ.js";
13
+ import "./chunk-CTFDRWUN.js";
14
14
  import {
15
15
  require_is_glob
16
16
  } from "./chunk-7IK72W75.js";
@@ -371,4 +371,4 @@ var require_del = __commonJS({
371
371
  }
372
372
  });
373
373
  export default require_del();
374
- //# sourceMappingURL=del-KB2YLEEB.js.map
374
+ //# sourceMappingURL=del-MOZRBB7Y.js.map
@@ -5,10 +5,10 @@ import {
5
5
  init_cjs_shims
6
6
  } from "./chunk-PKR7KJ6P.js";
7
7
 
8
- // ../../node_modules/.pnpm/ink@4.4.1_@types+react@17.0.2_react@18.2.0/node_modules/ink/build/devtools.js
8
+ // ../../node_modules/.pnpm/ink@4.4.1_@types+react@17.0.2_react@18.3.1/node_modules/ink/build/devtools.js
9
9
  init_cjs_shims();
10
10
 
11
- // ../../node_modules/.pnpm/ink@4.4.1_@types+react@17.0.2_react@18.2.0/node_modules/ink/build/devtools-window-polyfill.js
11
+ // ../../node_modules/.pnpm/ink@4.4.1_@types+react@17.0.2_react@18.3.1/node_modules/ink/build/devtools-window-polyfill.js
12
12
  init_cjs_shims();
13
13
  var customGlobal = global;
14
14
  customGlobal.WebSocket || (customGlobal.WebSocket = wrapper_default);
@@ -66,7 +66,7 @@ customGlobal.window.__REACT_DEVTOOLS_COMPONENT_FILTERS__ = [
66
66
  }
67
67
  ];
68
68
 
69
- // ../../node_modules/.pnpm/ink@4.4.1_@types+react@17.0.2_react@18.2.0/node_modules/ink/build/devtools.js
69
+ // ../../node_modules/.pnpm/ink@4.4.1_@types+react@17.0.2_react@18.3.1/node_modules/ink/build/devtools.js
70
70
  import devtools from "react-devtools-core";
71
71
  devtools.connectToDevTools();
72
- //# sourceMappingURL=devtools-J4QAI6HR.js.map
72
+ //# sourceMappingURL=devtools-LDCSRUXB.js.map
@@ -4,20 +4,19 @@ import {
4
4
  errorHandler,
5
5
  registerCleanBugsnagErrorsFromWithinPlugins,
6
6
  sendErrorToBugsnag
7
- } from "./chunk-4CUOCZWA.js";
8
- import "./chunk-YD5O6X2N.js";
9
- import "./chunk-TMCHXNDX.js";
7
+ } from "./chunk-4S4CSWD6.js";
8
+ import "./chunk-4WMN57JE.js";
9
+ import "./chunk-6EPG6YJ6.js";
10
10
  import "./chunk-25IMI7TH.js";
11
- import "./chunk-3WLCDYDH.js";
12
- import "./chunk-OB3TW53B.js";
13
- import "./chunk-3INFDIM3.js";
14
- import "./chunk-3I3GQNEW.js";
15
- import "./chunk-ZUCWDIGE.js";
16
- import "./chunk-CDBXAE2F.js";
11
+ import "./chunk-C4ABWPZH.js";
12
+ import "./chunk-TT3RANTU.js";
13
+ import "./chunk-2YVW3FGK.js";
14
+ import "./chunk-UMUTXITN.js";
15
+ import "./chunk-Y2JP6WFP.js";
17
16
  import "./chunk-SHWOPMLQ.js";
18
17
  import "./chunk-75LV6AQS.js";
19
- import "./chunk-LH5HVQQC.js";
20
- import "./chunk-TJM3YBLQ.js";
18
+ import "./chunk-VMUIREUQ.js";
19
+ import "./chunk-CTFDRWUN.js";
21
20
  import "./chunk-7IK72W75.js";
22
21
  import "./chunk-G2ZZKGSV.js";
23
22
  import "./chunk-PKR7KJ6P.js";
@@ -28,4 +27,4 @@ export {
28
27
  registerCleanBugsnagErrorsFromWithinPlugins,
29
28
  sendErrorToBugsnag
30
29
  };
31
- //# sourceMappingURL=error-handler-4H2Q3GJ6.js.map
30
+ //# sourceMappingURL=error-handler-DQ6X5YKA.js.map
@@ -3,23 +3,22 @@ import {
3
3
  } from "../chunk-CP3BRHWK.js";
4
4
  import {
5
5
  reportAnalyticsEvent
6
- } from "../chunk-YD5O6X2N.js";
7
- import "../chunk-TMCHXNDX.js";
6
+ } from "../chunk-4WMN57JE.js";
7
+ import "../chunk-6EPG6YJ6.js";
8
8
  import "../chunk-25IMI7TH.js";
9
- import "../chunk-3WLCDYDH.js";
9
+ import "../chunk-C4ABWPZH.js";
10
10
  import {
11
11
  addSensitiveMetadata,
12
12
  getAllSensitiveMetadata,
13
13
  outputDebug,
14
14
  renderWarning
15
- } from "../chunk-OB3TW53B.js";
16
- import "../chunk-3INFDIM3.js";
17
- import "../chunk-3I3GQNEW.js";
18
- import "../chunk-ZUCWDIGE.js";
19
- import "../chunk-CDBXAE2F.js";
15
+ } from "../chunk-TT3RANTU.js";
16
+ import "../chunk-2YVW3FGK.js";
17
+ import "../chunk-UMUTXITN.js";
18
+ import "../chunk-Y2JP6WFP.js";
20
19
  import "../chunk-75LV6AQS.js";
21
- import "../chunk-LH5HVQQC.js";
22
- import "../chunk-TJM3YBLQ.js";
20
+ import "../chunk-VMUIREUQ.js";
21
+ import "../chunk-CTFDRWUN.js";
23
22
  import "../chunk-7IK72W75.js";
24
23
  import "../chunk-G2ZZKGSV.js";
25
24
  import {
@@ -1,17 +1,17 @@
1
1
  import {
2
2
  fetchNotificationsInBackground
3
- } from "../chunk-3AUF6SFV.js";
3
+ } from "../chunk-UQP4ZLNS.js";
4
4
  import {
5
5
  CLI_KIT_VERSION,
6
6
  startAnalytics
7
- } from "../chunk-TMCHXNDX.js";
7
+ } from "../chunk-6EPG6YJ6.js";
8
8
  import "../chunk-25IMI7TH.js";
9
9
  import {
10
10
  checkForCachedNewVersion,
11
11
  checkForNewVersion,
12
12
  packageManagerFromUserAgent,
13
13
  runAtMinimumInterval
14
- } from "../chunk-3WLCDYDH.js";
14
+ } from "../chunk-C4ABWPZH.js";
15
15
  import {
16
16
  currentProcessIsGlobal,
17
17
  inferPackageManagerForGlobalCLI,
@@ -20,14 +20,13 @@ import {
20
20
  outputDebug,
21
21
  outputToken,
22
22
  outputWarn
23
- } from "../chunk-OB3TW53B.js";
24
- import "../chunk-3INFDIM3.js";
25
- import "../chunk-3I3GQNEW.js";
26
- import "../chunk-ZUCWDIGE.js";
27
- import "../chunk-CDBXAE2F.js";
23
+ } from "../chunk-TT3RANTU.js";
24
+ import "../chunk-2YVW3FGK.js";
25
+ import "../chunk-UMUTXITN.js";
26
+ import "../chunk-Y2JP6WFP.js";
28
27
  import "../chunk-75LV6AQS.js";
29
- import "../chunk-LH5HVQQC.js";
30
- import "../chunk-TJM3YBLQ.js";
28
+ import "../chunk-VMUIREUQ.js";
29
+ import "../chunk-CTFDRWUN.js";
31
30
  import "../chunk-7IK72W75.js";
32
31
  import "../chunk-G2ZZKGSV.js";
33
32
  import {
@@ -1,7 +1,6 @@
1
1
  import {
2
2
  require_src
3
- } from "./chunk-LQ2ZKVR6.js";
4
- import "./chunk-3I3GQNEW.js";
3
+ } from "./chunk-UMUTXITN.js";
5
4
  import {
6
5
  __commonJS,
7
6
  __require,
@@ -301,9 +300,9 @@ var require_web_outgoing = __commonJS({
301
300
  }
302
301
  });
303
302
 
304
- // ../../node_modules/.pnpm/follow-redirects@1.15.6/node_modules/follow-redirects/debug.js
303
+ // ../../node_modules/.pnpm/follow-redirects@1.15.9/node_modules/follow-redirects/debug.js
305
304
  var require_debug = __commonJS({
306
- "../../node_modules/.pnpm/follow-redirects@1.15.6/node_modules/follow-redirects/debug.js"(exports, module) {
305
+ "../../node_modules/.pnpm/follow-redirects@1.15.9/node_modules/follow-redirects/debug.js"(exports, module) {
307
306
  init_cjs_shims();
308
307
  var debug;
309
308
  module.exports = function() {
@@ -320,13 +319,18 @@ var require_debug = __commonJS({
320
319
  }
321
320
  });
322
321
 
323
- // ../../node_modules/.pnpm/follow-redirects@1.15.6/node_modules/follow-redirects/index.js
322
+ // ../../node_modules/.pnpm/follow-redirects@1.15.9/node_modules/follow-redirects/index.js
324
323
  var require_follow_redirects = __commonJS({
325
- "../../node_modules/.pnpm/follow-redirects@1.15.6/node_modules/follow-redirects/index.js"(exports, module) {
324
+ "../../node_modules/.pnpm/follow-redirects@1.15.9/node_modules/follow-redirects/index.js"(exports, module) {
326
325
  init_cjs_shims();
327
- var url = __require("url"), URL = url.URL, http = __require("http"), https = __require("https"), Writable = __require("stream").Writable, assert = __require("assert"), debug = require_debug(), useNativeURL = !1;
326
+ var url = __require("url"), URL = url.URL, http = __require("http"), https = __require("https"), Writable = __require("stream").Writable, assert = __require("assert"), debug = require_debug();
327
+ (function() {
328
+ var looksLikeNode = typeof process < "u", looksLikeBrowser = typeof window < "u" && typeof document < "u", looksLikeV8 = isFunction(Error.captureStackTrace);
329
+ !looksLikeNode && (looksLikeBrowser || !looksLikeV8) && console.warn("The follow-redirects package should be excluded from browser builds.");
330
+ })();
331
+ var useNativeURL = !1;
328
332
  try {
329
- assert(new URL());
333
+ assert(new URL(""));
330
334
  } catch (error) {
331
335
  useNativeURL = error.code === "ERR_INVALID_URL";
332
336
  }
@@ -574,7 +578,7 @@ var require_follow_redirects = __commonJS({
574
578
  }
575
579
  function createErrorType(code, message, baseClass) {
576
580
  function CustomError(properties) {
577
- Error.captureStackTrace(this, this.constructor), Object.assign(this, properties || {}), this.code = code, this.message = this.cause ? message + ": " + this.cause.message : message;
581
+ isFunction(Error.captureStackTrace) && Error.captureStackTrace(this, this.constructor), Object.assign(this, properties || {}), this.code = code, this.message = this.cause ? message + ": " + this.cause.message : message;
578
582
  }
579
583
  return CustomError.prototype = new (baseClass || Error)(), Object.defineProperties(CustomError.prototype, {
580
584
  constructor: {
@@ -934,4 +938,4 @@ http-proxy/index.js:
934
938
  * Dante - The Divine Comedy (Canto III)
935
939
  *)
936
940
  */
937
- //# sourceMappingURL=http-proxy-KGLXPNEY.js.map
941
+ //# sourceMappingURL=http-proxy-LHSVRGJ5.js.map