@shopify/create-app 3.61.0 → 3.61.2

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 (35) hide show
  1. package/dist/{chunk-I3IYXB26.js → chunk-5TIUXWJI.js} +5 -5
  2. package/dist/{chunk-H3UBEY47.js → chunk-5VLFIRJZ.js} +3 -3
  3. package/dist/{chunk-7F4FS2WD.js → chunk-6MVE3OZ2.js} +5 -5
  4. package/dist/{chunk-LLFZPH5K.js → chunk-6PWOAHEA.js} +7 -7
  5. package/dist/{chunk-GQNJWQKC.js → chunk-B2QBH7MN.js} +4 -4
  6. package/dist/{chunk-H4N7DG5X.js → chunk-C7PRLYZC.js} +1 -1
  7. package/dist/{chunk-J3QAMMY2.js → chunk-DCYRMEAR.js} +1 -1
  8. package/dist/{chunk-PKFDUXG6.js → chunk-DEIGDWGB.js} +1 -1
  9. package/dist/{chunk-LR725A3N.js → chunk-EBLO5TQ6.js} +3 -3
  10. package/dist/{chunk-PGYGWMK7.js → chunk-EXKYFA3Q.js} +5 -5
  11. package/dist/{chunk-XKDB3ST7.js → chunk-ML34TC74.js} +2 -2
  12. package/dist/{chunk-5NBS5LAW.js → chunk-QTBH3GO6.js} +1 -1
  13. package/dist/{chunk-YI3MHBSD.js → chunk-TEIUSMQF.js} +1 -1
  14. package/dist/{chunk-X2I3FAVD.js → chunk-XRBC4UM7.js} +2596 -793
  15. package/dist/commands/init.js +14 -14
  16. package/dist/commands/init.test.js +14 -14
  17. package/dist/{custom-oclif-loader-KLTAWG4B.js → custom-oclif-loader-4SQGUQ7D.js} +1 -1
  18. package/dist/{error-handler-ND7WBMC3.js → error-handler-WI4YVJIS.js} +8 -8
  19. package/dist/hooks/postrun.js +7 -7
  20. package/dist/hooks/prerun.js +4 -4
  21. package/dist/index.js +1 -1
  22. package/dist/{local-3LWDOA7J.js → local-YKOG4EUR.js} +1 -1
  23. package/dist/{node-package-manager-TFY2ROCP.js → node-package-manager-S7TSAUJZ.js} +2 -2
  24. package/dist/prompts/init.js +2 -2
  25. package/dist/prompts/init.test.js +2 -2
  26. package/dist/services/init.js +8 -8
  27. package/dist/{system-FTT76GKS.js → system-XXZMW2TO.js} +1 -1
  28. package/dist/tsconfig.tsbuildinfo +1 -1
  29. package/dist/{ui-MUGCNPLG.js → ui-FUZYK6S3.js} +1 -1
  30. package/dist/utils/template/cleanup.js +2 -2
  31. package/dist/utils/template/cleanup.test.js +2 -2
  32. package/dist/utils/template/npm.js +4 -4
  33. package/dist/utils/template/npm.test.js +4 -4
  34. package/oclif.manifest.json +1 -1
  35. package/package.json +2 -2
@@ -1,19 +1,19 @@
1
1
  import {
2
2
  cleanup
3
- } from "./chunk-YI3MHBSD.js";
3
+ } from "./chunk-TEIUSMQF.js";
4
4
  import {
5
5
  getDeepInstallNPMTasks,
6
6
  updateCLIDependencies
7
- } from "./chunk-H3UBEY47.js";
7
+ } from "./chunk-5VLFIRJZ.js";
8
8
  import {
9
9
  username
10
- } from "./chunk-J3QAMMY2.js";
10
+ } from "./chunk-DCYRMEAR.js";
11
11
  import {
12
12
  UnknownPackageManagerError,
13
13
  findUpAndReadPackageJson,
14
14
  lockfiles,
15
15
  writePackageJSON
16
- } from "./chunk-H4N7DG5X.js";
16
+ } from "./chunk-C7PRLYZC.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-XKDB3ST7.js";
44
+ } from "./chunk-ML34TC74.js";
45
45
  import {
46
46
  dirname,
47
47
  joinPath,
@@ -1,12 +1,12 @@
1
1
  import {
2
2
  CLI_KIT_VERSION
3
- } from "./chunk-5NBS5LAW.js";
3
+ } from "./chunk-QTBH3GO6.js";
4
4
  import {
5
5
  installNodeModules
6
- } from "./chunk-H4N7DG5X.js";
6
+ } from "./chunk-C7PRLYZC.js";
7
7
  import {
8
8
  findPathUp
9
- } from "./chunk-XKDB3ST7.js";
9
+ } from "./chunk-ML34TC74.js";
10
10
  import {
11
11
  moduleDirectory,
12
12
  normalizePath
@@ -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-MUGCNPLG.js");
22
+ const { renderWarning } = await import("./ui-FUZYK6S3.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-ND7WBMC3.js");
57
- const { isDevelopment } = await import("./local-3LWDOA7J.js");
56
+ const { errorHandler } = await import("./error-handler-WI4YVJIS.js");
57
+ const { isDevelopment } = await import("./local-YKOG4EUR.js");
58
58
  const oclif = await import("./lib-76RCE6WZ.js");
59
- const { ShopifyConfig } = await import("./custom-oclif-loader-KLTAWG4B.js");
59
+ const { ShopifyConfig } = await import("./custom-oclif-loader-4SQGUQ7D.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-TFY2ROCP.js");
76
+ const { findUpAndReadPackageJson } = await import("./node-package-manager-S7TSAUJZ.js");
77
77
  const { moduleDirectory } = await import("./path-HO4HBKK5.js");
78
78
  const packageJson = await findUpAndReadPackageJson(moduleDirectory(options.moduleURL));
79
79
  const packageName = packageJson.content.name;
@@ -1,26 +1,26 @@
1
1
  import {
2
2
  errorHandler,
3
3
  registerCleanBugsnagErrorsFromWithinPlugins
4
- } from "./chunk-GQNJWQKC.js";
4
+ } from "./chunk-B2QBH7MN.js";
5
5
  import {
6
6
  init_default as init_default2
7
- } from "./chunk-I3IYXB26.js";
7
+ } from "./chunk-5TIUXWJI.js";
8
8
  import {
9
9
  hashString
10
- } from "./chunk-LR725A3N.js";
10
+ } from "./chunk-EBLO5TQ6.js";
11
11
  import {
12
12
  packageManager,
13
13
  packageManagerFromUserAgent
14
- } from "./chunk-H4N7DG5X.js";
14
+ } from "./chunk-C7PRLYZC.js";
15
15
  import {
16
16
  globalFlags
17
- } from "./chunk-7F4FS2WD.js";
17
+ } from "./chunk-6MVE3OZ2.js";
18
18
  import {
19
19
  init_default,
20
20
  isPredefinedTemplate,
21
21
  templates,
22
22
  visibleTemplates
23
- } from "./chunk-PKFDUXG6.js";
23
+ } from "./chunk-DEIGDWGB.js";
24
24
  import {
25
25
  AbortError,
26
26
  addPublicMetadata,
@@ -37,7 +37,7 @@ import {
37
37
  renderWarning,
38
38
  terminalSupportsRawMode,
39
39
  underscore
40
- } from "./chunk-XKDB3ST7.js";
40
+ } from "./chunk-ML34TC74.js";
41
41
  import {
42
42
  cwd,
43
43
  resolvePath
@@ -4,13 +4,13 @@ import {
4
4
  import {
5
5
  fanoutHooks,
6
6
  reportAnalyticsEvent
7
- } from "./chunk-PGYGWMK7.js";
7
+ } from "./chunk-EXKYFA3Q.js";
8
8
  import {
9
9
  CLI_KIT_VERSION
10
- } from "./chunk-5NBS5LAW.js";
10
+ } from "./chunk-QTBH3GO6.js";
11
11
  import {
12
12
  getEnvironmentData
13
- } from "./chunk-LR725A3N.js";
13
+ } from "./chunk-EBLO5TQ6.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-XKDB3ST7.js";
26
+ } from "./chunk-ML34TC74.js";
27
27
  import {
28
28
  bugsnagApiKey
29
29
  } from "./chunk-RAFFEFML.js";
@@ -13,7 +13,7 @@ import {
13
13
  require_get_stream,
14
14
  runWithTimer,
15
15
  writeFile
16
- } from "./chunk-XKDB3ST7.js";
16
+ } from "./chunk-ML34TC74.js";
17
17
  import {
18
18
  dirname,
19
19
  joinPath
@@ -2,7 +2,7 @@ import {
2
2
  execa,
3
3
  outputContent,
4
4
  outputDebug
5
- } from "./chunk-XKDB3ST7.js";
5
+ } from "./chunk-ML34TC74.js";
6
6
  import {
7
7
  init_cjs_shims
8
8
  } from "./chunk-M63RTPGR.js";
@@ -4,7 +4,7 @@ import {
4
4
  renderSelectPrompt,
5
5
  renderText,
6
6
  renderTextPrompt
7
- } from "./chunk-XKDB3ST7.js";
7
+ } from "./chunk-ML34TC74.js";
8
8
  import {
9
9
  __export,
10
10
  init_cjs_shims
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  platformAndArch
3
- } from "./chunk-J3QAMMY2.js";
3
+ } from "./chunk-DCYRMEAR.js";
4
4
  import {
5
5
  getPackageManager,
6
6
  packageManagerFromUserAgent
7
- } from "./chunk-H4N7DG5X.js";
7
+ } from "./chunk-C7PRLYZC.js";
8
8
  import {
9
9
  addPublicMetadata,
10
10
  addSensitiveMetadata,
@@ -12,7 +12,7 @@ import {
12
12
  cloudEnvironment,
13
13
  currentProcessIsGlobal,
14
14
  macAddress
15
- } from "./chunk-XKDB3ST7.js";
15
+ } from "./chunk-ML34TC74.js";
16
16
  import {
17
17
  cwd
18
18
  } from "./chunk-G6FN5VUE.js";
@@ -1,16 +1,16 @@
1
1
  import {
2
2
  fetch
3
- } from "./chunk-X2I3FAVD.js";
3
+ } from "./chunk-XRBC4UM7.js";
4
4
  import {
5
5
  CLI_KIT_VERSION
6
- } from "./chunk-5NBS5LAW.js";
6
+ } from "./chunk-QTBH3GO6.js";
7
7
  import {
8
8
  getEnvironmentData,
9
9
  getSensitiveEnvironmentData
10
- } from "./chunk-LR725A3N.js";
10
+ } from "./chunk-EBLO5TQ6.js";
11
11
  import {
12
12
  require_semver
13
- } from "./chunk-H4N7DG5X.js";
13
+ } from "./chunk-C7PRLYZC.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-XKDB3ST7.js";
28
+ } from "./chunk-ML34TC74.js";
29
29
  import {
30
30
  joinPath
31
31
  } from "./chunk-G6FN5VUE.js";
@@ -42538,7 +42538,7 @@ function createRuntimeMetadataContainer(defaultPublicMetadata = {}) {
42538
42538
  try {
42539
42539
  await getAndSet();
42540
42540
  } catch (error) {
42541
- const { sendErrorToBugsnag } = await import("./error-handler-ND7WBMC3.js");
42541
+ const { sendErrorToBugsnag } = await import("./error-handler-WI4YVJIS.js");
42542
42542
  await sendErrorToBugsnag(error, "unexpected_error");
42543
42543
  }
42544
42544
  }
@@ -43001,7 +43001,7 @@ var ConcurrentOutput = ({
43001
43001
  }, [abortSignal, processes, writableStream, unmountInk, keepRunningAfterProcessesResolve]);
43002
43002
  const { lineVertical } = figures_default;
43003
43003
  return /* @__PURE__ */ import_react30.default.createElement(Static, { items: processOutput }, (chunk, index) => {
43004
- return /* @__PURE__ */ import_react30.default.createElement(Box_default, { flexDirection: "column", key: index }, chunk.lines.map((line, index2) => /* @__PURE__ */ import_react30.default.createElement(Box_default, { key: index2, flexDirection: "row" }, showTimestamps ? /* @__PURE__ */ import_react30.default.createElement(Text, null, currentTime(), " ", lineVertical, " ") : null, /* @__PURE__ */ import_react30.default.createElement(Text, { color: chunk.color }, formatPrefix(chunk.prefix)), /* @__PURE__ */ import_react30.default.createElement(Text, null, " ", lineVertical, " ", line))));
43004
+ return /* @__PURE__ */ import_react30.default.createElement(Box_default, { flexDirection: "column", key: index }, chunk.lines.map((line, index2) => /* @__PURE__ */ import_react30.default.createElement(Box_default, { key: index2, flexDirection: "row" }, /* @__PURE__ */ import_react30.default.createElement(Text, null, showTimestamps ? /* @__PURE__ */ import_react30.default.createElement(Text, null, currentTime(), " ", lineVertical, " ") : null, /* @__PURE__ */ import_react30.default.createElement(Text, { color: chunk.color }, formatPrefix(chunk.prefix)), /* @__PURE__ */ import_react30.default.createElement(Text, null, " ", lineVertical, " ", line)))));
43005
43005
  });
43006
43006
  };
43007
43007
 
@@ -4,7 +4,7 @@ import {
4
4
 
5
5
  // ../cli-kit/src/public/common/version.ts
6
6
  init_cjs_shims();
7
- var CLI_KIT_VERSION = "3.61.0";
7
+ var CLI_KIT_VERSION = "3.61.2";
8
8
 
9
9
  export {
10
10
  CLI_KIT_VERSION
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  glob,
3
3
  rmdir
4
- } from "./chunk-XKDB3ST7.js";
4
+ } from "./chunk-ML34TC74.js";
5
5
  import {
6
6
  joinPath
7
7
  } from "./chunk-G6FN5VUE.js";