@shopify/create-app 3.62.0 → 3.63.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 (39) hide show
  1. package/dist/{chunk-I642G37M.js → chunk-6NKOAMJ7.js} +6 -6
  2. package/dist/{chunk-E4HW5M5H.js → chunk-7CYOJFAX.js} +6 -6
  3. package/dist/{chunk-H7PE6UQQ.js → chunk-DMQ5PJYN.js} +2 -2
  4. package/dist/{chunk-WW3VYTIJ.js → chunk-G6QBSFLH.js} +2 -2
  5. package/dist/{chunk-3C7VBPKV.js → chunk-GJKNLX4J.js} +2 -2
  6. package/dist/{chunk-YH2RKQUF.js → chunk-IKO7JBOJ.js} +5460 -4963
  7. package/dist/{chunk-NORDGBTQ.js → chunk-KPEZA2L3.js} +12 -8
  8. package/dist/{chunk-UAHNJ7DG.js → chunk-NA63Z6K4.js} +4 -4
  9. package/dist/{chunk-CSUGYG4O.js → chunk-PUHU6WXP.js} +6 -6
  10. package/dist/{chunk-MPBVJXAB.js → chunk-QSTBKMMY.js} +5 -5
  11. package/dist/{chunk-E3R2QNZH.js → chunk-R2X365BT.js} +2 -2
  12. package/dist/{chunk-VH2SMHYM.js → chunk-SKK7YAMK.js} +58 -4
  13. package/dist/chunk-SWNRLCC6.js +61 -0
  14. package/dist/{chunk-CUZDIE7U.js → chunk-THLHSBOW.js} +2 -2
  15. package/dist/{chunk-B62HZLMM.js → chunk-WLZZJLBE.js} +2 -2
  16. package/dist/{chunk-BKY7FLON.js → chunk-Z2U25GAE.js} +4 -4
  17. package/dist/commands/init.js +15 -15
  18. package/dist/commands/init.test.js +16 -16
  19. package/dist/{custom-oclif-loader-7Q5WVZP6.js → custom-oclif-loader-24YZGNXW.js} +3 -3
  20. package/dist/{error-handler-OOIG25BK.js → error-handler-5TPXA3WD.js} +10 -10
  21. package/dist/hooks/postrun.js +8 -8
  22. package/dist/hooks/prerun.js +5 -5
  23. package/dist/index.js +1 -1
  24. package/dist/{local-GYBILLDV.js → local-PVFVJCKQ.js} +3 -3
  25. package/dist/{node-package-manager-N7CTF74M.js → node-package-manager-CJ6M2OMG.js} +4 -4
  26. package/dist/prompts/init.js +3 -3
  27. package/dist/prompts/init.test.js +4 -4
  28. package/dist/services/init.js +9 -9
  29. package/dist/services/init.test.js +2 -2
  30. package/dist/{system-KZ6D632Y.js → system-GTUFZR5A.js} +3 -3
  31. package/dist/tsconfig.tsbuildinfo +1 -1
  32. package/dist/{ui-DULGDV4Y.js → ui-JFR6QQSD.js} +3 -3
  33. package/dist/utils/template/cleanup.js +3 -3
  34. package/dist/utils/template/cleanup.test.js +4 -4
  35. package/dist/utils/template/npm.js +5 -5
  36. package/dist/utils/template/npm.test.js +6 -6
  37. package/oclif.manifest.json +2 -1
  38. package/package.json +4 -4
  39. package/dist/chunk-ZPFJOUKZ.js +0 -115
@@ -19,7 +19,7 @@ async function warnIfOldNodeVersion() {
19
19
  const nodeMajorVersion = Number(nodeVersion.split(".")[0]);
20
20
  const currentSupportedNodeVersion = 18;
21
21
  if (nodeMajorVersion < currentSupportedNodeVersion) {
22
- const { renderWarning } = await import("./ui-DULGDV4Y.js");
22
+ const { renderWarning } = await import("./ui-JFR6QQSD.js");
23
23
  renderWarning({
24
24
  headline: "Upgrade to a supported Node version now.",
25
25
  body: [
@@ -53,10 +53,10 @@ async function runCLI(options) {
53
53
  setupEnvironmentVariables(options);
54
54
  forceNoColor();
55
55
  await warnIfOldNodeVersion();
56
- const { errorHandler } = await import("./error-handler-OOIG25BK.js");
57
- const { isDevelopment } = await import("./local-GYBILLDV.js");
56
+ const { errorHandler } = await import("./error-handler-5TPXA3WD.js");
57
+ const { isDevelopment } = await import("./local-PVFVJCKQ.js");
58
58
  const oclif = await import("./lib-CTSCLPNV.js");
59
- const { ShopifyConfig } = await import("./custom-oclif-loader-7Q5WVZP6.js");
59
+ const { ShopifyConfig } = await import("./custom-oclif-loader-24YZGNXW.js");
60
60
  if (isDevelopment()) {
61
61
  oclif.default.settings.debug = true;
62
62
  }
@@ -73,7 +73,7 @@ async function runCLI(options) {
73
73
  }
74
74
  async function runCreateCLI(options) {
75
75
  setupEnvironmentVariables(options);
76
- const { findUpAndReadPackageJson } = await import("./node-package-manager-N7CTF74M.js");
76
+ const { findUpAndReadPackageJson } = await import("./node-package-manager-CJ6M2OMG.js");
77
77
  const { moduleDirectory } = await import("./path-LR5NP4LX.js");
78
78
  const packageJson = await findUpAndReadPackageJson(moduleDirectory(options.moduleURL));
79
79
  const packageName = packageJson.content.name;
@@ -102,4 +102,4 @@ export {
102
102
  runCreateCLI,
103
103
  globalFlags
104
104
  };
105
- //# sourceMappingURL=chunk-I642G37M.js.map
105
+ //# sourceMappingURL=chunk-6NKOAMJ7.js.map
@@ -1,16 +1,16 @@
1
1
  import {
2
2
  fetch
3
- } from "./chunk-H7PE6UQQ.js";
3
+ } from "./chunk-DMQ5PJYN.js";
4
4
  import {
5
5
  CLI_KIT_VERSION
6
- } from "./chunk-B62HZLMM.js";
6
+ } from "./chunk-WLZZJLBE.js";
7
7
  import {
8
8
  getEnvironmentData,
9
9
  getSensitiveEnvironmentData
10
- } from "./chunk-UAHNJ7DG.js";
10
+ } from "./chunk-NA63Z6K4.js";
11
11
  import {
12
12
  require_semver
13
- } from "./chunk-WW3VYTIJ.js";
13
+ } from "./chunk-G6QBSFLH.js";
14
14
  import {
15
15
  alwaysLogAnalytics,
16
16
  alwaysLogMetrics,
@@ -25,7 +25,7 @@ import {
25
25
  outputContent,
26
26
  outputDebug,
27
27
  outputToken
28
- } from "./chunk-VH2SMHYM.js";
28
+ } from "./chunk-SKK7YAMK.js";
29
29
  import {
30
30
  joinPath
31
31
  } from "./chunk-STRDP5MF.js";
@@ -18916,4 +18916,4 @@ export {
18916
18916
  fanoutHooks,
18917
18917
  reportAnalyticsEvent
18918
18918
  };
18919
- //# sourceMappingURL=chunk-E4HW5M5H.js.map
18919
+ //# sourceMappingURL=chunk-7CYOJFAX.js.map
@@ -6,7 +6,7 @@ import {
6
6
  import {
7
7
  outputDebug,
8
8
  runWithTimer
9
- } from "./chunk-VH2SMHYM.js";
9
+ } from "./chunk-SKK7YAMK.js";
10
10
  import {
11
11
  __commonJS,
12
12
  __require,
@@ -32797,4 +32797,4 @@ mime-types/index.js:
32797
32797
  * MIT Licensed
32798
32798
  *)
32799
32799
  */
32800
- //# sourceMappingURL=chunk-H7PE6UQQ.js.map
32800
+ //# sourceMappingURL=chunk-DMQ5PJYN.js.map
@@ -15,7 +15,7 @@ import {
15
15
  require_get_stream,
16
16
  runWithTimer,
17
17
  writeFile
18
- } from "./chunk-VH2SMHYM.js";
18
+ } from "./chunk-SKK7YAMK.js";
19
19
  import {
20
20
  envPaths
21
21
  } from "./chunk-URQFBBW5.js";
@@ -22127,4 +22127,4 @@ deep-extend/lib/deep-extend.js:
22127
22127
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22128
22128
  *)
22129
22129
  */
22130
- //# sourceMappingURL=chunk-WW3VYTIJ.js.map
22130
+ //# sourceMappingURL=chunk-G6QBSFLH.js.map
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  glob,
3
3
  rmdir
4
- } from "./chunk-VH2SMHYM.js";
4
+ } from "./chunk-SKK7YAMK.js";
5
5
  import {
6
6
  joinPath
7
7
  } from "./chunk-STRDP5MF.js";
@@ -35,4 +35,4 @@ async function cleanup(webOutputDirectory) {
35
35
  export {
36
36
  cleanup
37
37
  };
38
- //# sourceMappingURL=chunk-3C7VBPKV.js.map
38
+ //# sourceMappingURL=chunk-GJKNLX4J.js.map