@graphcommerce/cli 7.1.0-canary.8 → 8.0.0-canary.40
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 +64 -0
- package/package.json +16 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,69 @@
|
|
|
1
1
|
# @graphcommerce/cli
|
|
2
2
|
|
|
3
|
+
## 8.0.0-canary.40
|
|
4
|
+
|
|
5
|
+
## 7.1.0-canary.39
|
|
6
|
+
|
|
7
|
+
## 7.1.0-canary.38
|
|
8
|
+
|
|
9
|
+
## 7.1.0-canary.37
|
|
10
|
+
|
|
11
|
+
## 7.1.0-canary.36
|
|
12
|
+
|
|
13
|
+
## 7.1.0-canary.35
|
|
14
|
+
|
|
15
|
+
## 7.1.0-canary.34
|
|
16
|
+
|
|
17
|
+
## 7.1.0-canary.33
|
|
18
|
+
|
|
19
|
+
## 7.1.0-canary.32
|
|
20
|
+
|
|
21
|
+
## 7.1.0-canary.31
|
|
22
|
+
|
|
23
|
+
## 7.1.0-canary.30
|
|
24
|
+
|
|
25
|
+
## 7.1.0-canary.29
|
|
26
|
+
|
|
27
|
+
## 7.1.0-canary.28
|
|
28
|
+
|
|
29
|
+
## 7.1.0-canary.27
|
|
30
|
+
|
|
31
|
+
## 7.1.0-canary.26
|
|
32
|
+
|
|
33
|
+
## 7.1.0-canary.25
|
|
34
|
+
|
|
35
|
+
## 7.1.0-canary.24
|
|
36
|
+
|
|
37
|
+
## 7.1.0-canary.23
|
|
38
|
+
|
|
39
|
+
## 7.1.0-canary.22
|
|
40
|
+
|
|
41
|
+
## 7.1.0-canary.21
|
|
42
|
+
|
|
43
|
+
## 7.1.0-canary.20
|
|
44
|
+
|
|
45
|
+
## 7.1.0-canary.19
|
|
46
|
+
|
|
47
|
+
## 7.1.0-canary.18
|
|
48
|
+
|
|
49
|
+
## 7.1.0-canary.17
|
|
50
|
+
|
|
51
|
+
## 7.1.0-canary.16
|
|
52
|
+
|
|
53
|
+
## 7.1.0-canary.15
|
|
54
|
+
|
|
55
|
+
## 7.1.0-canary.14
|
|
56
|
+
|
|
57
|
+
## 7.1.0-canary.13
|
|
58
|
+
|
|
59
|
+
## 7.1.0-canary.12
|
|
60
|
+
|
|
61
|
+
## 7.1.0-canary.11
|
|
62
|
+
|
|
63
|
+
## 7.1.0-canary.10
|
|
64
|
+
|
|
65
|
+
## 7.1.0-canary.9
|
|
66
|
+
|
|
3
67
|
## 7.1.0-canary.8
|
|
4
68
|
|
|
5
69
|
## 7.0.2-canary.7
|
package/package.json
CHANGED
|
@@ -2,9 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/cli",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "
|
|
6
|
-
"author": "",
|
|
7
|
-
"license": "MIT",
|
|
5
|
+
"version": "8.0.0-canary.40",
|
|
8
6
|
"scripts": {
|
|
9
7
|
"dev": "tsc --preserveWatchOutput --watch",
|
|
10
8
|
"build": "tsc",
|
|
@@ -14,18 +12,16 @@
|
|
|
14
12
|
"main": "dist/index.js",
|
|
15
13
|
"types": "src/index.ts",
|
|
16
14
|
"bin": {
|
|
17
|
-
"mesh": "dist/bin/mesh.js",
|
|
18
|
-
"gql-mesh": "dist/bin/mesh.js",
|
|
19
|
-
"graphql-mesh": "dist/bin/mesh.js",
|
|
20
15
|
"gql-gen": "dist/bin/codegen.js",
|
|
21
|
-
"
|
|
16
|
+
"gql-mesh": "dist/bin/mesh.js",
|
|
17
|
+
"graphcommerce": "dist/bin/graphcommerce.js",
|
|
22
18
|
"graphql-code-generator": "dist/bin/codegen.js",
|
|
19
|
+
"graphql-codegen": "dist/bin/codegen.js",
|
|
20
|
+
"graphql-mesh": "dist/bin/mesh.js",
|
|
23
21
|
"is-monorepo": "dist/bin/is-monorepo.js",
|
|
24
|
-
"
|
|
22
|
+
"mesh": "dist/bin/mesh.js"
|
|
25
23
|
},
|
|
26
24
|
"dependencies": {
|
|
27
|
-
"@graphcommerce/hygraph-cli": "7.1.0-canary.8",
|
|
28
|
-
"@graphcommerce/next-config": "7.1.0-canary.8",
|
|
29
25
|
"@graphql-codegen/cli": "5.0.0",
|
|
30
26
|
"@graphql-mesh/cli": "latest",
|
|
31
27
|
"@graphql-mesh/cross-helpers": "latest",
|
|
@@ -33,20 +29,21 @@
|
|
|
33
29
|
"@graphql-mesh/store": "latest",
|
|
34
30
|
"@graphql-mesh/types": "latest",
|
|
35
31
|
"@graphql-mesh/utils": "latest",
|
|
36
|
-
"
|
|
32
|
+
"@graphql-tools/utils": "^10.0.8",
|
|
33
|
+
"cosmiconfig": "^8.3.6",
|
|
37
34
|
"detect-package-manager": "^3.0.1",
|
|
38
35
|
"graphql-codegen-typescript-validation-schema": "^0.12.0",
|
|
39
36
|
"graphql-tag": "^2.12.6",
|
|
40
|
-
"rimraf": "^5.0.
|
|
41
|
-
"
|
|
37
|
+
"rimraf": "^5.0.5",
|
|
38
|
+
"tslib": "^2.6.2"
|
|
42
39
|
},
|
|
43
40
|
"peerDependencies": {
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"@graphcommerce/
|
|
48
|
-
"@graphcommerce/
|
|
49
|
-
"
|
|
41
|
+
"@graphcommerce/eslint-config-pwa": "8.0.0-canary.40",
|
|
42
|
+
"@graphcommerce/hygraph-cli": "8.0.0-canary.40",
|
|
43
|
+
"@graphcommerce/next-config": "8.0.0-canary.40",
|
|
44
|
+
"@graphcommerce/prettier-config-pwa": "8.0.0-canary.40",
|
|
45
|
+
"@graphcommerce/typescript-config-pwa": "8.0.0-canary.40",
|
|
46
|
+
"graphql": "^16.7.1",
|
|
50
47
|
"react": "^18.2.0",
|
|
51
48
|
"typescript": "5.2.2"
|
|
52
49
|
},
|