@apollo/rover 0.10.0 → 0.11.0-rc.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 +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
@@ -158,7 +158,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
|
|
158
158
|
> Note: If you're installing Rover in a CI environment, it's best to target a specific version rather than using the latest URL, since future major breaking changes could affect CI workflows otherwise.
|
159
159
|
|
160
160
|
```bash
|
161
|
-
curl -sSL https://rover.apollo.dev/nix/v0.
|
161
|
+
curl -sSL https://rover.apollo.dev/nix/v0.10.0 | sh
|
162
162
|
```
|
163
163
|
|
164
164
|
You will need `curl` installed on your system to run the above installation commands. You can get the latest version from [the curl downloads page](https://curl.se/download.html).
|
@@ -176,7 +176,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
|
|
176
176
|
> Note: If you're installing Rover in a CI environment, it's best to target a specific version rather than using the latest URL, since future major breaking changes could affect CI workflows otherwise.
|
177
177
|
|
178
178
|
```bash
|
179
|
-
iwr 'https://rover.apollo.dev/win/v0.
|
179
|
+
iwr 'https://rover.apollo.dev/win/v0.10.0' | iex
|
180
180
|
```
|
181
181
|
|
182
182
|
#### npm installer
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@apollo/rover",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.11.0-rc.1",
|
4
4
|
"description": "The new Apollo CLI",
|
5
5
|
"main": "index.js",
|
6
6
|
"bin": {
|
@@ -33,7 +33,7 @@
|
|
33
33
|
},
|
34
34
|
"volta": {
|
35
35
|
"node": "18.12.1",
|
36
|
-
"npm": "9.1.
|
36
|
+
"npm": "9.1.3"
|
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.
|
46
|
+
"prettier": "2.8.0"
|
47
47
|
}
|
48
48
|
}
|