@graphox/cli 0.1.13 → 0.1.17
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/README.md +0 -4
- package/graphox.schema.json +7 -1
- package/package.json +9 -8
package/README.md
CHANGED
|
@@ -124,10 +124,6 @@ If automatic installation fails, you can manually download binaries from the [re
|
|
|
124
124
|
- `GRAPHOX_LOCAL_BUILD`: Path to a local binary to use instead of downloading (useful for development)
|
|
125
125
|
- `GRAPHOX_DOWNLOAD_URL`: Override the download URL for the binary (useful for mirrors or custom builds)
|
|
126
126
|
|
|
127
|
-
## License
|
|
128
|
-
|
|
129
|
-
MIT
|
|
130
|
-
|
|
131
127
|
## Repository
|
|
132
128
|
|
|
133
129
|
https://github.com/soundtrackyourbrand/graphox
|
package/graphox.schema.json
CHANGED
|
@@ -52,7 +52,13 @@
|
|
|
52
52
|
"default": true
|
|
53
53
|
},
|
|
54
54
|
"rules": { "$ref": "#/definitions/RulesConfig" },
|
|
55
|
-
"codegen": {
|
|
55
|
+
"codegen": {
|
|
56
|
+
"description": "Codegen configuration. Set to false to disable codegen globally.",
|
|
57
|
+
"oneOf": [
|
|
58
|
+
{ "type": "boolean" },
|
|
59
|
+
{ "$ref": "#/definitions/CodegenConfig" }
|
|
60
|
+
]
|
|
61
|
+
}
|
|
56
62
|
},
|
|
57
63
|
"definitions": {
|
|
58
64
|
"ProjectConfig": {
|
package/package.json
CHANGED
|
@@ -1,24 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphox/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
4
4
|
"description": "Graphox CLI - High-performance GraphQL toolset",
|
|
5
5
|
"bin": {
|
|
6
6
|
"graphox": "./bin/graphox"
|
|
7
7
|
},
|
|
8
8
|
"optionalDependencies": {
|
|
9
|
-
"@graphox/darwin-arm64": "0.1.
|
|
10
|
-
"@graphox/darwin-x64": "0.1.
|
|
11
|
-
"@graphox/linux-arm64": "0.1.
|
|
12
|
-
"@graphox/linux-x64": "0.1.
|
|
13
|
-
"@graphox/win32-arm64": "0.1.
|
|
14
|
-
"@graphox/win32-x64": "0.1.
|
|
9
|
+
"@graphox/darwin-arm64": "0.1.17",
|
|
10
|
+
"@graphox/darwin-x64": "0.1.17",
|
|
11
|
+
"@graphox/linux-arm64": "0.1.17",
|
|
12
|
+
"@graphox/linux-x64": "0.1.17",
|
|
13
|
+
"@graphox/win32-arm64": "0.1.17",
|
|
14
|
+
"@graphox/win32-x64": "0.1.17"
|
|
15
15
|
},
|
|
16
16
|
"publishConfig": {
|
|
17
17
|
"access": "public"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
21
|
-
"url": "https://github.com/soundtrackyourbrand/graphox"
|
|
21
|
+
"url": "https://github.com/soundtrackyourbrand/graphox",
|
|
22
|
+
"directory": "npm/graphox-cli"
|
|
22
23
|
},
|
|
23
24
|
"keywords": [
|
|
24
25
|
"graphql",
|