@graphcommerce/cli 8.1.0-canary.2 → 8.1.0-canary.22

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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,97 @@
1
1
  # @graphcommerce/cli
2
2
 
3
- ## 8.1.0-canary.2
3
+ ## 8.1.0-canary.22
4
+
5
+ ## 8.1.0-canary.21
6
+
7
+ ## 8.1.0-canary.20
8
+
9
+ ## 8.1.0-canary.19
10
+
11
+ ## 8.1.0-canary.18
12
+
13
+ ## 8.1.0-canary.17
14
+
15
+ ## 8.1.0-canary.16
16
+
17
+ ## 8.1.0-canary.15
18
+
19
+ ## 8.1.0-canary.14
20
+
21
+ ## 8.1.0-canary.13
22
+
23
+ ## 8.1.0-canary.12
24
+
25
+ ## 8.1.0-canary.11
26
+
27
+ ## 8.1.0-canary.10
28
+
29
+ ## 8.1.0-canary.9
30
+
31
+ ## 8.1.0-canary.8
32
+
33
+ ### Patch Changes
34
+
35
+ - [#2247](https://github.com/graphcommerce-org/graphcommerce/pull/2247) [`cfc0f4e`](https://github.com/graphcommerce-org/graphcommerce/commit/cfc0f4e015f3b3a7348b882eb7440222b3e26a07) - Make sure the interceptors are generated before the typecheck is ran.
36
+ ([@paales](https://github.com/paales))
37
+
38
+ ## 8.1.0-canary.7
39
+
40
+ ## 8.1.0-canary.6
41
+
42
+ ## 8.1.0-canary.5
43
+
44
+ ## 8.0.6-canary.4
45
+
46
+ ## 8.0.6-canary.3
47
+
48
+ ## 8.0.6-canary.2
49
+
50
+ ## 8.0.6-canary.1
51
+
52
+ ## 8.0.6-canary.0
53
+
54
+ ## 8.0.5
55
+
56
+ ## 8.0.5-canary.10
57
+
58
+ ## 8.0.5-canary.9
59
+
60
+ ## 8.0.5-canary.8
61
+
62
+ ## 8.0.5-canary.7
63
+
64
+ ## 8.0.5-canary.6
65
+
66
+ ## 8.0.5-canary.5
67
+
68
+ ## 8.0.5-canary.4
69
+
70
+ ## 8.0.5-canary.3
71
+
72
+ ## 8.0.5-canary.2
73
+
74
+ ## 8.0.5-canary.1
75
+
76
+ ## 8.0.5-canary.0
77
+
78
+ ## 8.0.4
79
+
80
+ ## 8.0.4-canary.1
81
+
82
+ ## 8.0.4-canary.0
83
+
84
+ ## 8.0.3
85
+
86
+ ## 8.0.3-canary.6
87
+
88
+ ## 8.0.3-canary.5
89
+
90
+ ## 8.0.3-canary.4
91
+
92
+ ## 8.0.3-canary.3
93
+
94
+ ## 8.0.3-canary.2
4
95
 
5
96
  ## 8.0.3-canary.1
6
97
 
@@ -25,6 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
25
25
  };
26
26
  const commands = {
27
27
  'codegen-config': () => Promise.resolve().then(() => __importStar(require('@graphcommerce/next-config'))).then((m) => m.generateConfig),
28
+ 'codegen-interceptors': () => Promise.resolve().then(() => __importStar(require('@graphcommerce/next-config'))).then((m) => m.codegenInterceptors),
28
29
  'export-config': () => Promise.resolve().then(() => __importStar(require('@graphcommerce/next-config'))).then((m) => m.exportConfig),
29
30
  'hygraph-migrate': () => Promise.resolve().then(() => __importStar(require('@graphcommerce/hygraph-cli'))).then((m) => m.migrateHygraph),
30
31
  };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@graphcommerce/cli",
3
3
  "homepage": "https://www.graphcommerce.org/",
4
4
  "repository": "github:graphcommerce-org/graphcommerce",
5
- "version": "8.1.0-canary.2",
5
+ "version": "8.1.0-canary.22",
6
6
  "scripts": {
7
7
  "dev": "tsc --preserveWatchOutput --watch",
8
8
  "build": "tsc",
@@ -38,11 +38,11 @@
38
38
  "tslib": "^2.6.2"
39
39
  },
40
40
  "peerDependencies": {
41
- "@graphcommerce/eslint-config-pwa": "^8.1.0-canary.2",
42
- "@graphcommerce/hygraph-cli": "^8.1.0-canary.2",
43
- "@graphcommerce/next-config": "^8.1.0-canary.2",
44
- "@graphcommerce/prettier-config-pwa": "^8.1.0-canary.2",
45
- "@graphcommerce/typescript-config-pwa": "^8.1.0-canary.2",
41
+ "@graphcommerce/eslint-config-pwa": "^8.1.0-canary.22",
42
+ "@graphcommerce/hygraph-cli": "^8.1.0-canary.22",
43
+ "@graphcommerce/next-config": "^8.1.0-canary.22",
44
+ "@graphcommerce/prettier-config-pwa": "^8.1.0-canary.22",
45
+ "@graphcommerce/typescript-config-pwa": "^8.1.0-canary.22",
46
46
  "graphql": "^16.7.1",
47
47
  "react": "^18.2.0"
48
48
  },
@@ -2,6 +2,8 @@
2
2
 
3
3
  const commands = {
4
4
  'codegen-config': () => import('@graphcommerce/next-config').then((m) => m.generateConfig),
5
+ 'codegen-interceptors': () =>
6
+ import('@graphcommerce/next-config').then((m) => m.codegenInterceptors),
5
7
  'export-config': () => import('@graphcommerce/next-config').then((m) => m.exportConfig),
6
8
  'hygraph-migrate': () => import('@graphcommerce/hygraph-cli').then((m) => m.migrateHygraph),
7
9
  }