@shopify/create-app 3.74.0 → 3.75.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 (26) hide show
  1. package/dist/{chunk-VK6YB4CW.js → chunk-3YDOTMPD.js} +3 -3
  2. package/dist/{chunk-ZUCWDIGE.js → chunk-57Q6OQG4.js} +2 -2
  3. package/dist/{chunk-QPEQYFIE.js → chunk-5SC2R6CT.js} +10053 -10052
  4. package/dist/{chunk-A2CUF3IE.js → chunk-C5GINFDG.js} +2 -2
  5. package/dist/{chunk-PNW5KDM2.js → chunk-EPQ2L6IW.js} +7 -7
  6. package/dist/{chunk-MFOTVT4R.js → chunk-ICQBXF5V.js} +83 -20
  7. package/dist/{chunk-ZKGBK6WQ.js → chunk-IVFBSLUD.js} +15 -8
  8. package/dist/{chunk-RVS7NPOH.js → chunk-L7GASDV2.js} +4 -4
  9. package/dist/{chunk-NBA3G6YQ.js → chunk-S3QEOIDU.js} +33 -28
  10. package/dist/{custom-oclif-loader-3WFQ2GRD.js → custom-oclif-loader-CXVA2M3L.js} +5 -6
  11. package/dist/{del-CKAQ44SX.js → del-G6PUU7PY.js} +3 -3
  12. package/dist/{error-handler-N6P2X42R.js → error-handler-GC4GWYD5.js} +9 -10
  13. package/dist/hooks/postrun.js +7 -8
  14. package/dist/hooks/prerun.js +6 -7
  15. package/dist/index.js +5972 -5283
  16. package/dist/index.test.js +34 -35
  17. package/dist/{lib-ZAUU5FOJ.js → lib-GSZAN7VA.js} +3 -3
  18. package/dist/{local-EBAW6AUD.js → local-6CQLDUCI.js} +7 -6
  19. package/dist/{magic-string.es-PJMYOE6F.js → magic-string.es-BSVDQOZI.js} +32 -20
  20. package/dist/{node-package-manager-VTG2B4KW.js → node-package-manager-DQ4PU7OM.js} +6 -7
  21. package/dist/{path-GWAZZN2N.js → path-2K5HIMHZ.js} +2 -2
  22. package/dist/tsconfig.tsbuildinfo +1 -1
  23. package/dist/{ui-QBKDPUJX.js → ui-PWRERZXU.js} +5 -6
  24. package/oclif.manifest.json +1 -1
  25. package/package.json +5 -4
  26. package/dist/chunk-CFIKVUNW.js +0 -45
@@ -17,14 +17,13 @@ import {
17
17
  renderText,
18
18
  renderTextPrompt,
19
19
  renderWarning
20
- } from "./chunk-MFOTVT4R.js";
21
- import "./chunk-NBA3G6YQ.js";
20
+ } from "./chunk-ICQBXF5V.js";
21
+ import "./chunk-S3QEOIDU.js";
22
22
  import "./chunk-3I3GQNEW.js";
23
- import "./chunk-CFIKVUNW.js";
24
- import "./chunk-ZUCWDIGE.js";
23
+ import "./chunk-57Q6OQG4.js";
25
24
  import "./chunk-CDBXAE2F.js";
26
25
  import "./chunk-75LV6AQS.js";
27
- import "./chunk-ZKGBK6WQ.js";
26
+ import "./chunk-IVFBSLUD.js";
28
27
  import "./chunk-5DBS6QOU.js";
29
28
  import "./chunk-B3YWYURY.js";
30
29
  import "./chunk-G2ZZKGSV.js";
@@ -49,4 +48,4 @@ export {
49
48
  renderTextPrompt,
50
49
  renderWarning
51
50
  };
52
- //# sourceMappingURL=ui-QBKDPUJX.js.map
51
+ //# sourceMappingURL=ui-PWRERZXU.js.map
@@ -104,5 +104,5 @@
104
104
  "summary": "Create a new app project"
105
105
  }
106
106
  },
107
- "version": "3.74.0"
107
+ "version": "3.75.0"
108
108
  }
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@shopify/create-app",
3
- "version": "3.74.0",
3
+ "version": "3.75.0",
4
+ "packageManager": "pnpm@8.15.7",
4
5
  "private": false,
5
6
  "description": "A CLI tool to create a new Shopify app.",
6
7
  "keywords": [
@@ -44,11 +45,11 @@
44
45
  ]
45
46
  },
46
47
  "dependencies": {
47
- "esbuild": "0.24.0"
48
+ "esbuild": "0.24.2"
48
49
  },
49
50
  "devDependencies": {
50
- "@shopify/cli-kit": "3.74.0",
51
- "@shopify/app": "3.74.0",
51
+ "@shopify/cli-kit": "3.75.0",
52
+ "@shopify/app": "3.75.0",
52
53
  "esbuild-plugin-copy": "^2.1.1",
53
54
  "@vitest/coverage-istanbul": "^1.6.0"
54
55
  },
@@ -1,45 +0,0 @@
1
- import {
2
- init_cjs_shims
3
- } from "./chunk-PKR7KJ6P.js";
4
-
5
- // ../../node_modules/.pnpm/yocto-queue@1.0.0/node_modules/yocto-queue/index.js
6
- init_cjs_shims();
7
- var Node = class {
8
- value;
9
- next;
10
- constructor(value) {
11
- this.value = value;
12
- }
13
- }, Queue = class {
14
- #head;
15
- #tail;
16
- #size;
17
- constructor() {
18
- this.clear();
19
- }
20
- enqueue(value) {
21
- let node = new Node(value);
22
- this.#head ? (this.#tail.next = node, this.#tail = node) : (this.#head = node, this.#tail = node), this.#size++;
23
- }
24
- dequeue() {
25
- let current = this.#head;
26
- if (current)
27
- return this.#head = this.#head.next, this.#size--, current.value;
28
- }
29
- clear() {
30
- this.#head = void 0, this.#tail = void 0, this.#size = 0;
31
- }
32
- get size() {
33
- return this.#size;
34
- }
35
- *[Symbol.iterator]() {
36
- let current = this.#head;
37
- for (; current; )
38
- yield current.value, current = current.next;
39
- }
40
- };
41
-
42
- export {
43
- Queue
44
- };
45
- //# sourceMappingURL=chunk-CFIKVUNW.js.map