@apollo/rover 0.5.0-rc.0 → 0.5.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 +3 -3
- package/binary.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -37,7 +37,7 @@ rover graph publish --schema ./path-to-valid-schema test@cats
|
|
37
37
|
## Command-line options
|
38
38
|
|
39
39
|
```console
|
40
|
-
Rover 0.5.0-rc.
|
40
|
+
Rover 0.5.0-rc.1
|
41
41
|
|
42
42
|
Rover - Your Graph Companion
|
43
43
|
Read the getting started guide by running:
|
@@ -142,7 +142,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
|
|
142
142
|
> 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.
|
143
143
|
|
144
144
|
```bash
|
145
|
-
curl -sSL https://rover.apollo.dev/nix/v0.5.0-rc.
|
145
|
+
curl -sSL https://rover.apollo.dev/nix/v0.5.0-rc.1 | sh
|
146
146
|
```
|
147
147
|
|
148
148
|
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).
|
@@ -160,7 +160,7 @@ To install a specific version of Rover (note the `v` prefixing the version numbe
|
|
160
160
|
> 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.
|
161
161
|
|
162
162
|
```bash
|
163
|
-
iwr 'https://rover.apollo.dev/win/v0.5.0-rc.
|
163
|
+
iwr 'https://rover.apollo.dev/win/v0.5.0-rc.1' | iex
|
164
164
|
```
|
165
165
|
|
166
166
|
#### npm installer
|
package/binary.js
CHANGED
@@ -111,7 +111,7 @@ const run = () => {
|
|
111
111
|
|
112
112
|
const install = () => {
|
113
113
|
const binary = getBinary();
|
114
|
-
|
114
|
+
binary.install();
|
115
115
|
let pluginInstallCommand = `${binary.binaryPath} install --plugin`;
|
116
116
|
let commands = [
|
117
117
|
`${pluginInstallCommand} supergraph@latest-0`,
|