@graphcommerce/cli 4.30.0-canary.1 → 4.30.1
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 +16 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @graphcommerce/cli
|
|
2
2
|
|
|
3
|
+
## 4.30.1
|
|
4
|
+
|
|
5
|
+
## 4.30.0
|
|
6
|
+
|
|
7
|
+
### Minor Changes
|
|
8
|
+
|
|
9
|
+
- [#1613](https://github.com/graphcommerce-org/graphcommerce/pull/1613) [`1ef81efa2`](https://github.com/graphcommerce-org/graphcommerce/commit/1ef81efa238b2e79312ab35c6829abec266e4ad1) Thanks [@paales](https://github.com/paales)! - All codegen files that need to be scanned will be handled by a new resolveDependenciesSync method
|
|
10
|
+
|
|
11
|
+
- [#1613](https://github.com/graphcommerce-org/graphcommerce/pull/1613) [`da20e4e72`](https://github.com/graphcommerce-org/graphcommerce/commit/da20e4e72ca3f29216592e0ecfb59c0e44bcbe20) Thanks [@paales](https://github.com/paales)! - Created an is-monorepo command to exectute scripts based if they are in the monorepo or in a project
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#1613](https://github.com/graphcommerce-org/graphcommerce/pull/1613) [`6c1c69ca4`](https://github.com/graphcommerce-org/graphcommerce/commit/6c1c69ca45ea1c8737cc7dcdc341fe5d825ed380) Thanks [@paales](https://github.com/paales)! - Refactor next-config to also use the new resolveDependenciesSync by exposing withGraphCommerce
|
|
16
|
+
|
|
17
|
+
- [#1702](https://github.com/graphcommerce-org/graphcommerce/pull/1702) [`abb15ef4a`](https://github.com/graphcommerce-org/graphcommerce/commit/abb15ef4a79b12eddb32cc006e5d1d31dd06ac2d) Thanks [@paales](https://github.com/paales)! - Added canary releases to GraphCommerce
|
|
18
|
+
|
|
3
19
|
## 4.30.0-canary.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
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": "4.30.
|
|
5
|
+
"version": "4.30.1",
|
|
6
6
|
"author": "",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"scripts": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"graphcommerce": "dist/bin/graphcommerce.js"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@graphcommerce/next-config": "4.30.
|
|
25
|
+
"@graphcommerce/next-config": "4.30.1",
|
|
26
26
|
"@graphql-codegen/cli": "2.11.8",
|
|
27
27
|
"@graphql-mesh/cli": "0.76.2",
|
|
28
28
|
"@graphql-mesh/types": "0.80.2",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"rimraf": "^3.0.2"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@graphcommerce/eslint-config-pwa": "^4.1.11
|
|
36
|
-
"@graphcommerce/prettier-config-pwa": "^4.0.7
|
|
37
|
-
"@graphcommerce/typescript-config-pwa": "^4.0.5
|
|
35
|
+
"@graphcommerce/eslint-config-pwa": "^4.1.11",
|
|
36
|
+
"@graphcommerce/prettier-config-pwa": "^4.0.7",
|
|
37
|
+
"@graphcommerce/typescript-config-pwa": "^4.0.5",
|
|
38
38
|
"@playwright/test": "^1.21.1",
|
|
39
39
|
"@types/rimraf": "^3.0.2",
|
|
40
40
|
"typescript": "4.7.4"
|