@apollo/rover 0.11.0-rc.2 → 0.11.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/README.md +7 -9
- package/package.json +4 -4
package/README.md
CHANGED
@@ -44,6 +44,8 @@ Usage: rover [OPTIONS] <COMMAND>
|
|
44
44
|
Commands:
|
45
45
|
config
|
46
46
|
Configuration profile commands
|
47
|
+
contract
|
48
|
+
Contract configuration commands
|
47
49
|
dev
|
48
50
|
Combine multiple subgraphs into a local supergraph
|
49
51
|
supergraph
|
@@ -69,17 +71,13 @@ Options:
|
|
69
71
|
-l, --log <LOG_LEVEL>
|
70
72
|
Specify Rover's log level
|
71
73
|
|
72
|
-
--format <
|
74
|
+
--format <FORMAT_KIND>
|
73
75
|
Specify Rover's format type
|
74
76
|
|
75
|
-
[default: plain]
|
76
77
|
[possible values: plain, json]
|
77
78
|
|
78
|
-
|
79
|
-
Specify Rover's output
|
80
|
-
|
81
|
-
[default: plain]
|
82
|
-
[possible values: plain, json, filename]
|
79
|
+
-o, --output <OUTPUT_FILE>
|
80
|
+
Specify a file to write Rover's output to
|
83
81
|
|
84
82
|
--insecure-accept-invalid-certs
|
85
83
|
Accept invalid certificates when performing HTTPS requests.
|
@@ -104,10 +102,10 @@ Options:
|
|
104
102
|
Skip checking for newer versions of rover
|
105
103
|
|
106
104
|
-h, --help
|
107
|
-
Print help
|
105
|
+
Print help (see a summary with '-h')
|
108
106
|
|
109
107
|
-V, --version
|
110
|
-
Print version
|
108
|
+
Print version
|
111
109
|
|
112
110
|
Read the getting started guide by running:
|
113
111
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@apollo/rover",
|
3
|
-
"version": "0.11.
|
3
|
+
"version": "0.11.1",
|
4
4
|
"description": "The new Apollo CLI",
|
5
5
|
"main": "index.js",
|
6
6
|
"bin": {
|
@@ -32,8 +32,8 @@
|
|
32
32
|
"npm": ">=6"
|
33
33
|
},
|
34
34
|
"volta": {
|
35
|
-
"node": "18.
|
36
|
-
"npm": "9.1
|
35
|
+
"node": "18.13.0",
|
36
|
+
"npm": "9.3.1"
|
37
37
|
},
|
38
38
|
"homepage": "https://github.com/apollographql/rover#readme",
|
39
39
|
"dependencies": {
|
@@ -43,6 +43,6 @@
|
|
43
43
|
"detect-libc": "^2.0.0"
|
44
44
|
},
|
45
45
|
"devDependencies": {
|
46
|
-
"prettier": "2.8.
|
46
|
+
"prettier": "2.8.3"
|
47
47
|
}
|
48
48
|
}
|