@shopify/create-app 3.80.7 → 3.81.0

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-YD5O6X2N.js → chunk-24FFN3UF.js} +26 -26
  2. package/dist/{chunk-3INFDIM3.js → chunk-2YVW3FGK.js} +42 -507
  3. package/dist/{chunk-3WLCDYDH.js → chunk-7O563I7I.js} +275 -76
  4. package/dist/{chunk-TJM3YBLQ.js → chunk-CTFDRWUN.js} +15 -12
  5. package/dist/{chunk-25SITN3I.js → chunk-ILI5X6PP.js} +2 -2
  6. package/dist/{chunk-3AUF6SFV.js → chunk-NQJJHSZI.js} +5 -5
  7. package/dist/{chunk-4CUOCZWA.js → chunk-PTSAUW2T.js} +15 -10
  8. package/dist/{chunk-OB3TW53B.js → chunk-QU7DXDZR.js} +243 -219
  9. package/dist/{chunk-LQ2ZKVR6.js → chunk-UMUTXITN.js} +87 -4
  10. package/dist/{chunk-LH5HVQQC.js → chunk-VMUIREUQ.js} +2 -2
  11. package/dist/{chunk-CDBXAE2F.js → chunk-Y2JP6WFP.js} +99 -11
  12. package/dist/{chunk-TMCHXNDX.js → chunk-YTTZ5B56.js} +32 -33
  13. package/dist/{custom-oclif-loader-6FO7YJKC.js → custom-oclif-loader-ZSOO2BP2.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-6K7FR77V.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 +11738 -5687
  21. package/dist/index.test.js +10022 -8822
  22. package/dist/lib-UJ7YNLH4.js +11 -0
  23. package/dist/{local-BLTCJNBH.js → local-BYAIQCJB.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-ZN2SJLTP.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-RJQBCWRN.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
@@ -996,9 +996,9 @@ var require_out2 = __commonJS({
996
996
  }
997
997
  });
998
998
 
999
- // ../../node_modules/.pnpm/reusify@1.0.4/node_modules/reusify/reusify.js
999
+ // ../../node_modules/.pnpm/reusify@1.1.0/node_modules/reusify/reusify.js
1000
1000
  var require_reusify = __commonJS({
1001
- "../../node_modules/.pnpm/reusify@1.0.4/node_modules/reusify/reusify.js"(exports, module) {
1001
+ "../../node_modules/.pnpm/reusify@1.1.0/node_modules/reusify/reusify.js"(exports, module) {
1002
1002
  "use strict";
1003
1003
  init_cjs_shims();
1004
1004
  function reusify(Constructor) {
@@ -1019,9 +1019,9 @@ var require_reusify = __commonJS({
1019
1019
  }
1020
1020
  });
1021
1021
 
1022
- // ../../node_modules/.pnpm/fastq@1.17.1/node_modules/fastq/queue.js
1022
+ // ../../node_modules/.pnpm/fastq@1.19.1/node_modules/fastq/queue.js
1023
1023
  var require_queue = __commonJS({
1024
- "../../node_modules/.pnpm/fastq@1.17.1/node_modules/fastq/queue.js"(exports, module) {
1024
+ "../../node_modules/.pnpm/fastq@1.19.1/node_modules/fastq/queue.js"(exports, module) {
1025
1025
  "use strict";
1026
1026
  init_cjs_shims();
1027
1027
  var reusify = require_reusify();
@@ -1152,14 +1152,17 @@ var require_queue = __commonJS({
1152
1152
  return p.catch(noop), p;
1153
1153
  }
1154
1154
  function drained() {
1155
- if (queue.idle())
1156
- return new Promise(function(resolve) {
1157
- resolve();
1155
+ var p = new Promise(function(resolve) {
1156
+ process.nextTick(function() {
1157
+ if (queue.idle())
1158
+ resolve();
1159
+ else {
1160
+ var previousDrain = queue.drain;
1161
+ queue.drain = function() {
1162
+ typeof previousDrain == "function" && previousDrain(), resolve(), queue.drain = previousDrain;
1163
+ };
1164
+ }
1158
1165
  });
1159
- var previousDrain = queue.drain, p = new Promise(function(resolve) {
1160
- queue.drain = function() {
1161
- previousDrain(), resolve();
1162
- };
1163
1166
  });
1164
1167
  return p;
1165
1168
  }
@@ -2051,4 +2054,4 @@ queue-microtask/index.js:
2051
2054
  run-parallel/index.js:
2052
2055
  (*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
2053
2056
  */
2054
- //# sourceMappingURL=chunk-TJM3YBLQ.js.map
2057
+ //# sourceMappingURL=chunk-CTFDRWUN.js.map
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-SHWOPMLQ.js";
5
5
  import {
6
6
  require_balanced_match
7
- } from "./chunk-LH5HVQQC.js";
7
+ } from "./chunk-VMUIREUQ.js";
8
8
  import {
9
9
  __commonJS,
10
10
  __require,
@@ -1458,4 +1458,4 @@ export {
1458
1458
  require_inflight,
1459
1459
  require_glob
1460
1460
  };
1461
- //# sourceMappingURL=chunk-25SITN3I.js.map
1461
+ //# sourceMappingURL=chunk-ILI5X6PP.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-YTTZ5B56.js";
6
6
  import {
7
7
  cacheRetrieve,
8
8
  cacheStore,
9
9
  versionSatisfies
10
- } from "./chunk-3WLCDYDH.js";
10
+ } from "./chunk-7O563I7I.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-QU7DXDZR.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-6K7FR77V.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-NQJJHSZI.js.map
@@ -1,14 +1,14 @@
1
1
  import {
2
2
  fanoutHooks,
3
3
  reportAnalyticsEvent
4
- } from "./chunk-YD5O6X2N.js";
4
+ } from "./chunk-24FFN3UF.js";
5
5
  import {
6
6
  CLI_KIT_VERSION,
7
7
  getEnvironmentData
8
- } from "./chunk-TMCHXNDX.js";
8
+ } from "./chunk-YTTZ5B56.js";
9
9
  import {
10
10
  runWithRateLimit
11
- } from "./chunk-3WLCDYDH.js";
11
+ } from "./chunk-7O563I7I.js";
12
12
  import {
13
13
  AbortSilentError,
14
14
  CancelExecution,
@@ -23,17 +23,17 @@ import {
23
23
  reportingRateLimit,
24
24
  require_stacktracey,
25
25
  shouldReportErrorAsUnexpected
26
- } from "./chunk-OB3TW53B.js";
26
+ } from "./chunk-QU7DXDZR.js";
27
27
  import {
28
28
  require_lib
29
- } from "./chunk-3INFDIM3.js";
29
+ } from "./chunk-2YVW3FGK.js";
30
30
  import {
31
31
  cwd,
32
32
  isAbsolutePath,
33
33
  joinPath,
34
34
  normalizePath,
35
35
  relativePath
36
- } from "./chunk-ZUCWDIGE.js";
36
+ } from "./chunk-Y2JP6WFP.js";
37
37
  import {
38
38
  require_once
39
39
  } from "./chunk-SHWOPMLQ.js";
@@ -350,11 +350,16 @@ var require_end_of_stream = __commonJS({
350
350
  }
351
351
  });
352
352
 
353
- // ../../node_modules/.pnpm/pump@3.0.0/node_modules/pump/index.js
353
+ // ../../node_modules/.pnpm/pump@3.0.2/node_modules/pump/index.js
354
354
  var require_pump = __commonJS({
355
- "../../node_modules/.pnpm/pump@3.0.0/node_modules/pump/index.js"(exports, module) {
355
+ "../../node_modules/.pnpm/pump@3.0.2/node_modules/pump/index.js"(exports, module) {
356
356
  init_cjs_shims();
357
- var once = require_once(), eos = require_end_of_stream(), fs = __require("fs"), noop = function() {
357
+ var once = require_once(), eos = require_end_of_stream(), fs;
358
+ try {
359
+ fs = __require("fs");
360
+ } catch {
361
+ }
362
+ var noop = function() {
358
363
  }, ancient = /^v?\.0/.test(process.version), isFn = function(fn) {
359
364
  return typeof fn == "function";
360
365
  }, isFS = function(stream) {
@@ -2137,4 +2142,4 @@ export {
2137
2142
  registerCleanBugsnagErrorsFromWithinPlugins,
2138
2143
  addBugsnagMetadata
2139
2144
  };
2140
- //# sourceMappingURL=chunk-4CUOCZWA.js.map
2145
+ //# sourceMappingURL=chunk-PTSAUW2T.js.map