@shopify/create-app 3.62.0 → 3.63.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 (39) hide show
  1. package/dist/{chunk-B62HZLMM.js → chunk-4NDUTTUN.js} +2 -2
  2. package/dist/{chunk-CSUGYG4O.js → chunk-4WWN5FOM.js} +6 -6
  3. package/dist/{chunk-I642G37M.js → chunk-ATUEWGVE.js} +6 -6
  4. package/dist/{chunk-H7PE6UQQ.js → chunk-F6HMWERM.js} +2 -2
  5. package/dist/{chunk-MPBVJXAB.js → chunk-HRKA5T4R.js} +5 -5
  6. package/dist/{chunk-WW3VYTIJ.js → chunk-HVU24J4B.js} +2 -2
  7. package/dist/{chunk-YH2RKQUF.js → chunk-IKO7JBOJ.js} +5460 -4963
  8. package/dist/{chunk-UAHNJ7DG.js → chunk-PRTNRTCO.js} +4 -4
  9. package/dist/{chunk-CUZDIE7U.js → chunk-QYV3IGK6.js} +2 -2
  10. package/dist/{chunk-NORDGBTQ.js → chunk-S24GEKLN.js} +12 -8
  11. package/dist/chunk-SWNRLCC6.js +61 -0
  12. package/dist/{chunk-VH2SMHYM.js → chunk-TDQP5DNM.js} +58 -4
  13. package/dist/{chunk-3C7VBPKV.js → chunk-TEWHYB5G.js} +2 -2
  14. package/dist/{chunk-E4HW5M5H.js → chunk-WIUNU6J5.js} +6 -6
  15. package/dist/{chunk-E3R2QNZH.js → chunk-WPLY3YAB.js} +2 -2
  16. package/dist/{chunk-BKY7FLON.js → chunk-YOU3TFV4.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-IYCQZLII.js} +3 -3
  20. package/dist/{error-handler-OOIG25BK.js → error-handler-JYZPYDGI.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-FTTFSJQM.js} +3 -3
  25. package/dist/{node-package-manager-N7CTF74M.js → node-package-manager-AKGEGINM.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-DKVEXBNE.js} +3 -3
  31. package/dist/tsconfig.tsbuildinfo +1 -1
  32. package/dist/{ui-DULGDV4Y.js → ui-MOQVVFEE.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
@@ -4,9 +4,9 @@ import {
4
4
 
5
5
  // ../cli-kit/src/public/common/version.ts
6
6
  init_cjs_shims();
7
- var CLI_KIT_VERSION = "3.62.0";
7
+ var CLI_KIT_VERSION = "3.63.0";
8
8
 
9
9
  export {
10
10
  CLI_KIT_VERSION
11
11
  };
12
- //# sourceMappingURL=chunk-B62HZLMM.js.map
12
+ //# sourceMappingURL=chunk-4NDUTTUN.js.map
@@ -1,19 +1,19 @@
1
1
  import {
2
2
  cleanup
3
- } from "./chunk-3C7VBPKV.js";
3
+ } from "./chunk-TEWHYB5G.js";
4
4
  import {
5
5
  getDeepInstallNPMTasks,
6
6
  updateCLIDependencies
7
- } from "./chunk-BKY7FLON.js";
7
+ } from "./chunk-YOU3TFV4.js";
8
8
  import {
9
9
  username
10
- } from "./chunk-E3R2QNZH.js";
10
+ } from "./chunk-WPLY3YAB.js";
11
11
  import {
12
12
  UnknownPackageManagerError,
13
13
  findUpAndReadPackageJson,
14
14
  lockfiles,
15
15
  writePackageJSON
16
- } from "./chunk-WW3VYTIJ.js";
16
+ } from "./chunk-HVU24J4B.js";
17
17
  import {
18
18
  AbortError,
19
19
  appendFile,
@@ -41,7 +41,7 @@ import {
41
41
  renderTasks,
42
42
  runWithTimer,
43
43
  writeFile
44
- } from "./chunk-VH2SMHYM.js";
44
+ } from "./chunk-TDQP5DNM.js";
45
45
  import {
46
46
  dirname,
47
47
  joinPath,
@@ -7832,4 +7832,4 @@ var init_default = init;
7832
7832
  export {
7833
7833
  init_default
7834
7834
  };
7835
- //# sourceMappingURL=chunk-CSUGYG4O.js.map
7835
+ //# sourceMappingURL=chunk-4WWN5FOM.js.map
@@ -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-MOQVVFEE.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-JYZPYDGI.js");
57
+ const { isDevelopment } = await import("./local-FTTFSJQM.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-IYCQZLII.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-AKGEGINM.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-ATUEWGVE.js.map
@@ -6,7 +6,7 @@ import {
6
6
  import {
7
7
  outputDebug,
8
8
  runWithTimer
9
- } from "./chunk-VH2SMHYM.js";
9
+ } from "./chunk-TDQP5DNM.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-F6HMWERM.js.map
@@ -4,13 +4,13 @@ import {
4
4
  import {
5
5
  fanoutHooks,
6
6
  reportAnalyticsEvent
7
- } from "./chunk-E4HW5M5H.js";
7
+ } from "./chunk-WIUNU6J5.js";
8
8
  import {
9
9
  CLI_KIT_VERSION
10
- } from "./chunk-B62HZLMM.js";
10
+ } from "./chunk-4NDUTTUN.js";
11
11
  import {
12
12
  getEnvironmentData
13
- } from "./chunk-UAHNJ7DG.js";
13
+ } from "./chunk-PRTNRTCO.js";
14
14
  import {
15
15
  AbortSilentError,
16
16
  CancelExecution,
@@ -23,7 +23,7 @@ import {
23
23
  outputInfo,
24
24
  require_stacktracey,
25
25
  shouldReportError
26
- } from "./chunk-VH2SMHYM.js";
26
+ } from "./chunk-TDQP5DNM.js";
27
27
  import {
28
28
  bugsnagApiKey
29
29
  } from "./chunk-URQFBBW5.js";
@@ -3182,4 +3182,4 @@ export {
3182
3182
  registerCleanBugsnagErrorsFromWithinPlugins,
3183
3183
  addBugsnagMetadata
3184
3184
  };
3185
- //# sourceMappingURL=chunk-MPBVJXAB.js.map
3185
+ //# sourceMappingURL=chunk-HRKA5T4R.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-TDQP5DNM.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-HVU24J4B.js.map