@shopify/create-app 3.69.4 → 3.71.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 (31) hide show
  1. package/dist/{chunk-Q3BCFN7X.js → chunk-33RXIX54.js} +15 -20
  2. package/dist/{chunk-4XZVKK5N.js → chunk-4ZKJC2JB.js} +3 -3
  3. package/dist/{chunk-L7M22NDW.js → chunk-6WYZ3SZB.js} +2 -2
  4. package/dist/{chunk-2A7GNM7F.js → chunk-7F4XFNYI.js} +2 -2
  5. package/dist/{chunk-AZIUHI45.js → chunk-CQGOPQQH.js} +5 -5
  6. package/dist/{chunk-CZRFEKLZ.js → chunk-JPPYUT6M.js} +23535 -23336
  7. package/dist/{chunk-MX4RJDBM.js → chunk-KYB6A4PE.js} +1 -2
  8. package/dist/{chunk-A7RFWXE2.js → chunk-PATNPZAL.js} +14 -11
  9. package/dist/{chunk-BB4M6AYQ.js → chunk-PGUENKZG.js} +28 -212
  10. package/dist/{chunk-ZYFGLOXH.js → chunk-PUMOQDXS.js} +258 -57
  11. package/dist/{chunk-PNN7RS7Y.js → chunk-X36SPRUS.js} +100 -11
  12. package/dist/{custom-oclif-loader-53O4TZIJ.js → custom-oclif-loader-OP5VH4KR.js} +9 -11
  13. package/dist/{del-42HQA7PR.js → del-2FOJ63S7.js} +4 -4
  14. package/dist/{error-handler-WHWFBH7O.js → error-handler-WKRKCPUQ.js} +11 -13
  15. package/dist/hooks/postrun.js +9 -11
  16. package/dist/hooks/prerun.js +9 -13
  17. package/dist/index.js +149240 -145769
  18. package/dist/index.test.js +120 -65
  19. package/dist/{lib-H5ZGVBFQ.js → lib-EGJUAXU5.js} +5 -5
  20. package/dist/{local-RKKDDHC7.js → local-IPRKH7YW.js} +9 -9
  21. package/dist/{node-package-manager-MZVZACMV.js → node-package-manager-CPX2FDHZ.js} +8 -10
  22. package/dist/{out-ZDSLKX4N.js → out-MHEKZJWS.js} +2 -2
  23. package/dist/{path-G6AAF6UV.js → path-EGU2FCFY.js} +2 -3
  24. package/dist/tsconfig.tsbuildinfo +1 -1
  25. package/dist/{ui-5ZHMFGW7.js → ui-AAFX7Q72.js} +7 -9
  26. package/oclif.manifest.json +1 -1
  27. package/package.json +3 -3
  28. package/dist/chunk-BB6N2XSA.js +0 -112
  29. package/dist/chunk-G6AY2JW5.js +0 -115
  30. package/dist/constants-GVJLI6RE.js +0 -24
  31. package/dist/system-HEFPAS7V.js +0 -27
@@ -1,17 +1,18 @@
1
1
  import {
2
2
  fanoutHooks,
3
3
  reportAnalyticsEvent
4
- } from "./chunk-BB4M6AYQ.js";
4
+ } from "./chunk-PGUENKZG.js";
5
5
  import {
6
6
  CLI_KIT_VERSION,
7
7
  getEnvironmentData
8
- } from "./chunk-ZYFGLOXH.js";
8
+ } from "./chunk-PUMOQDXS.js";
9
9
  import {
10
10
  runWithRateLimit
11
- } from "./chunk-A7RFWXE2.js";
11
+ } from "./chunk-PATNPZAL.js";
12
12
  import {
13
13
  AbortSilentError,
14
14
  CancelExecution,
15
+ bugsnagApiKey,
15
16
  cleanSingleStackTracePath,
16
17
  errorMapper,
17
18
  getAllPublicMetadata,
@@ -19,27 +20,23 @@ import {
19
20
  handler,
20
21
  outputDebug,
21
22
  outputInfo,
22
- printEventsJson,
23
+ reportingRateLimit,
23
24
  require_stacktracey,
24
25
  shouldReportErrorAsUnexpected
25
- } from "./chunk-CZRFEKLZ.js";
26
+ } from "./chunk-JPPYUT6M.js";
26
27
  import {
27
28
  require_lib
28
- } from "./chunk-AZIUHI45.js";
29
- import {
30
- require_once
31
- } from "./chunk-O5K4AU7Q.js";
32
- import {
33
- bugsnagApiKey,
34
- reportingRateLimit
35
- } from "./chunk-G6AY2JW5.js";
29
+ } from "./chunk-CQGOPQQH.js";
36
30
  import {
37
31
  cwd,
38
32
  isAbsolutePath,
39
33
  joinPath,
40
34
  normalizePath,
41
35
  relativePath
42
- } from "./chunk-BB6N2XSA.js";
36
+ } from "./chunk-X36SPRUS.js";
37
+ import {
38
+ require_once
39
+ } from "./chunk-O5K4AU7Q.js";
43
40
  import {
44
41
  __commonJS,
45
42
  __require,
@@ -2046,10 +2043,8 @@ import { realpath } from "fs/promises";
2046
2043
  async function errorHandler(error, config) {
2047
2044
  if (error instanceof CancelExecution)
2048
2045
  error.message && error.message !== "" && outputInfo(`\u2728 ${error.message}`);
2049
- else if (error instanceof AbortSilentError)
2050
- printEventsJson();
2051
- else
2052
- return errorMapper(error).then((error2) => handler(error2)).then((mappedError) => (printEventsJson(), reportError(mappedError, config)));
2046
+ else if (!(error instanceof AbortSilentError))
2047
+ return errorMapper(error).then((error2) => handler(error2)).then((mappedError) => reportError(mappedError, config));
2053
2048
  }
2054
2049
  var reportError = async (error, config) => {
2055
2050
  let exitMode = "expected_error";
@@ -2113,7 +2108,7 @@ async function addBugsnagMetadata(event, config) {
2113
2108
  ...publicData,
2114
2109
  ...environment,
2115
2110
  pluginData: otherPluginsPublic
2116
- }, appData = {}, commandData = {}, environmentData = {}, miscData = {}, appKeys = ["api_key", "partner_id", "project_type"], commandKeys = ["command"], environmentKeys = ["cli_version", "node_version", "ruby_version", "uname"];
2111
+ }, appData = {}, commandData = {}, environmentData = {}, miscData = {}, appKeys = ["api_key", "partner_id", "project_type"], commandKeys = ["command"], environmentKeys = ["cli_version", "node_version", "uname"];
2117
2112
  Object.entries(allMetadata).forEach(([key, value]) => {
2118
2113
  key.startsWith("app_") || appKeys.includes(key) ? appData[key] = value : key.startsWith("cmd_") || commandKeys.includes(key) ? commandData[key] = value : key.startsWith("env_") || environmentKeys ? environmentData[key] = value : miscData[key] = value;
2119
2114
  }), Object.entries({
@@ -2145,4 +2140,4 @@ export {
2145
2140
  registerCleanBugsnagErrorsFromWithinPlugins,
2146
2141
  addBugsnagMetadata
2147
2142
  };
2148
- //# sourceMappingURL=chunk-Q3BCFN7X.js.map
2143
+ //# sourceMappingURL=chunk-33RXIX54.js.map
@@ -1,12 +1,12 @@
1
1
  import {
2
2
  packageManagerFromUserAgent
3
- } from "./chunk-A7RFWXE2.js";
3
+ } from "./chunk-PATNPZAL.js";
4
4
  import {
5
5
  currentProcessIsGlobal,
6
6
  inferPackageManagerForGlobalCLI,
7
7
  outputContent,
8
8
  outputToken
9
- } from "./chunk-CZRFEKLZ.js";
9
+ } from "./chunk-JPPYUT6M.js";
10
10
  import {
11
11
  init_cjs_shims
12
12
  } from "./chunk-POZ5MGPT.js";
@@ -24,4 +24,4 @@ function getOutputUpdateCLIReminder(version) {
24
24
  export {
25
25
  getOutputUpdateCLIReminder
26
26
  };
27
- //# sourceMappingURL=chunk-4XZVKK5N.js.map
27
+ //# sourceMappingURL=chunk-4ZKJC2JB.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  require_merge2,
3
3
  require_out
4
- } from "./chunk-MX4RJDBM.js";
4
+ } from "./chunk-KYB6A4PE.js";
5
5
  import {
6
6
  __commonJS,
7
7
  __require,
@@ -659,4 +659,4 @@ export {
659
659
  require_globby,
660
660
  require_indent_string
661
661
  };
662
- //# sourceMappingURL=chunk-L7M22NDW.js.map
662
+ //# sourceMappingURL=chunk-6WYZ3SZB.js.map
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-O5K4AU7Q.js";
5
5
  import {
6
6
  require_balanced_match
7
- } from "./chunk-L7M22NDW.js";
7
+ } from "./chunk-6WYZ3SZB.js";
8
8
  import {
9
9
  __commonJS,
10
10
  __require,
@@ -1463,4 +1463,4 @@ export {
1463
1463
  require_inflight,
1464
1464
  require_glob
1465
1465
  };
1466
- //# sourceMappingURL=chunk-2A7GNM7F.js.map
1466
+ //# sourceMappingURL=chunk-7F4XFNYI.js.map
@@ -3,14 +3,14 @@ import {
3
3
  require_src,
4
4
  require_supports_color
5
5
  } from "./chunk-SNOECVP4.js";
6
- import {
7
- require_is_wsl
8
- } from "./chunk-UBB7JKND.js";
9
6
  import {
10
7
  require_balanced_match,
11
8
  require_globby,
12
9
  require_indent_string
13
- } from "./chunk-L7M22NDW.js";
10
+ } from "./chunk-6WYZ3SZB.js";
11
+ import {
12
+ require_is_wsl
13
+ } from "./chunk-UBB7JKND.js";
14
14
  import {
15
15
  __commonJS,
16
16
  __require,
@@ -157945,4 +157945,4 @@ ejs/lib/ejs.js:
157945
157945
  * @license {@link http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0}
157946
157946
  *)
157947
157947
  */
157948
- //# sourceMappingURL=chunk-AZIUHI45.js.map
157948
+ //# sourceMappingURL=chunk-CQGOPQQH.js.map