@graphcommerce/cli 9.1.0-canary.19 → 9.1.0-canary.21
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 +8 -0
- package/package.json +12 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @graphcommerce/cli
|
|
2
2
|
|
|
3
|
+
## 9.1.0-canary.21
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#2511](https://github.com/graphcommerce-org/graphcommerce/pull/2511) [`74d87cc`](https://github.com/graphcommerce-org/graphcommerce/commit/74d87cc5ea870f7ac99d375496c9704ea73c2090) - Make hygraph-cli dependency for the cli package optional, so that resolveDependenciesSync accepts it not being installed. ([@Giovanni-Schroevers](https://github.com/Giovanni-Schroevers))
|
|
8
|
+
|
|
9
|
+
## 9.1.0-canary.20
|
|
10
|
+
|
|
3
11
|
## 9.1.0-canary.19
|
|
4
12
|
|
|
5
13
|
## 9.1.0-canary.18
|
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": "9.1.0-canary.
|
|
5
|
+
"version": "9.1.0-canary.21",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "pkgroll --clean-dist --watch",
|
|
8
8
|
"build": "pkgroll --clean-dist",
|
|
@@ -35,17 +35,22 @@
|
|
|
35
35
|
"yaml": "2.6.1"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@graphcommerce/eslint-config-pwa": "^9.1.0-canary.
|
|
39
|
-
"@graphcommerce/graphql-mesh": "^9.1.0-canary.
|
|
40
|
-
"@graphcommerce/hygraph-cli": "^9.1.0-canary.
|
|
41
|
-
"@graphcommerce/next-config": "^9.1.0-canary.
|
|
42
|
-
"@graphcommerce/prettier-config-pwa": "^9.1.0-canary.
|
|
43
|
-
"@graphcommerce/typescript-config-pwa": "^9.1.0-canary.
|
|
38
|
+
"@graphcommerce/eslint-config-pwa": "^9.1.0-canary.21",
|
|
39
|
+
"@graphcommerce/graphql-mesh": "^9.1.0-canary.21",
|
|
40
|
+
"@graphcommerce/hygraph-cli": "^9.1.0-canary.21",
|
|
41
|
+
"@graphcommerce/next-config": "^9.1.0-canary.21",
|
|
42
|
+
"@graphcommerce/prettier-config-pwa": "^9.1.0-canary.21",
|
|
43
|
+
"@graphcommerce/typescript-config-pwa": "^9.1.0-canary.21",
|
|
44
44
|
"@graphql-mesh/cli": "*",
|
|
45
45
|
"@graphql-mesh/types": "*",
|
|
46
46
|
"@graphql-mesh/utils": "*",
|
|
47
47
|
"react": "^18.2.0"
|
|
48
48
|
},
|
|
49
|
+
"peerDependenciesMeta": {
|
|
50
|
+
"@graphcommerce/hygraph-cli": {
|
|
51
|
+
"optional": true
|
|
52
|
+
}
|
|
53
|
+
},
|
|
49
54
|
"sideEffects": false,
|
|
50
55
|
"prettier": "@graphcommerce/prettier-config-pwa",
|
|
51
56
|
"eslint": {
|