@graphcommerce/graphql-codegen-markdown-docs 8.0.0-canary.40 → 8.0.0-canary.69
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 +49 -3
- package/dist/index.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
@@ -1,13 +1,59 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## 8.0.0-canary.
|
3
|
+
## 8.0.0-canary.69
|
4
|
+
|
5
|
+
## 7.1.0-canary.68
|
6
|
+
|
7
|
+
## 7.1.0-canary.67
|
8
|
+
|
9
|
+
## 7.1.0-canary.66
|
10
|
+
|
11
|
+
## 7.1.0-canary.65
|
12
|
+
|
13
|
+
## 7.1.0-canary.64
|
14
|
+
|
15
|
+
## 7.1.0-canary.63
|
16
|
+
|
17
|
+
## 7.1.0-canary.62
|
18
|
+
|
19
|
+
## 7.1.0-canary.61
|
20
|
+
|
21
|
+
## 7.1.0-canary.60
|
22
|
+
|
23
|
+
## 7.1.0-canary.59
|
24
|
+
|
25
|
+
## 7.1.0-canary.58
|
26
|
+
|
27
|
+
## 7.1.0-canary.57
|
28
|
+
|
29
|
+
## 7.1.0-canary.56
|
30
|
+
|
31
|
+
## 7.1.0-canary.55
|
32
|
+
|
33
|
+
## 7.1.0-canary.54
|
34
|
+
|
35
|
+
## 7.1.0-canary.53
|
36
|
+
|
37
|
+
## 7.1.0-canary.52
|
38
|
+
|
39
|
+
## 7.1.0-canary.51
|
40
|
+
|
41
|
+
## 7.1.0-canary.50
|
42
|
+
|
43
|
+
## 7.1.0-canary.49
|
44
|
+
|
45
|
+
## 7.1.0-canary.48
|
46
|
+
|
47
|
+
## 7.1.0-canary.47
|
48
|
+
|
49
|
+
## 7.1.0-canary.46
|
50
|
+
|
51
|
+
## 7.1.0-canary.45
|
4
52
|
|
5
53
|
### Patch Changes
|
6
54
|
|
7
55
|
- [#2077](https://github.com/graphcommerce-org/graphcommerce/pull/2077) [`2e46389ed`](https://github.com/graphcommerce-org/graphcommerce/commit/2e46389edcd506c490cd7273be384e5c42df4a9e) - Render framework/config.md more nicely, so that we follow a more typescript-esque style, inline enums. ([@bramvanderholst](https://github.com/bramvanderholst))
|
8
56
|
|
9
|
-
## 7.1.0-canary.39
|
10
|
-
|
11
57
|
## 7.1.0-canary.38
|
12
58
|
|
13
59
|
## 7.1.0-canary.37
|
package/dist/index.js
CHANGED
@@ -33,7 +33,7 @@ config) => {
|
|
33
33
|
Name: { leave: (node) => node.value },
|
34
34
|
NamedType: {
|
35
35
|
leave: (node) => possibleScalars[node.name] ?? `[${node.name}](#${node.name})`,
|
36
|
-
},
|
36
|
+
}, // String, Boolean, GraphCommerceDebugConfig, etc.
|
37
37
|
StringValue: { leave: (node) => node.value },
|
38
38
|
BooleanValue: {
|
39
39
|
leave: (node) => (node.value ? 'true' : 'false'),
|
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@graphcommerce/graphql-codegen-markdown-docs",
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
5
|
-
"version": "8.0.0-canary.
|
5
|
+
"version": "8.0.0-canary.69",
|
6
6
|
"sideEffects": false,
|
7
7
|
"type": "commonjs",
|
8
8
|
"main": "dist/index.js",
|
@@ -24,14 +24,14 @@
|
|
24
24
|
"@graphql-codegen/add": "5.0.0",
|
25
25
|
"@graphql-codegen/plugin-helpers": "5.0.1",
|
26
26
|
"@graphql-codegen/visitor-plugin-common": "4.0.1",
|
27
|
-
"@graphql-tools/utils": "^10.0.
|
27
|
+
"@graphql-tools/utils": "^10.0.11",
|
28
28
|
"@types/parse-filepath": "^1.0.2",
|
29
29
|
"parse-filepath": "^1.0.2"
|
30
30
|
},
|
31
31
|
"peerDependencies": {
|
32
|
-
"@graphcommerce/eslint-config-pwa": "8.0.0-canary.
|
33
|
-
"@graphcommerce/prettier-config-pwa": "8.0.0-canary.
|
34
|
-
"@graphcommerce/typescript-config-pwa": "8.0.0-canary.
|
32
|
+
"@graphcommerce/eslint-config-pwa": "^8.0.0-canary.69",
|
33
|
+
"@graphcommerce/prettier-config-pwa": "^8.0.0-canary.69",
|
34
|
+
"@graphcommerce/typescript-config-pwa": "^8.0.0-canary.69",
|
35
35
|
"graphql": "^16.7.1"
|
36
36
|
}
|
37
37
|
}
|