@todesktop/cli 1.6.3 → 1.7.0-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 +12 -0
- package/dist/cli.js +659 -41
- package/dist/cli.js.map +4 -4
- package/package.json +9 -4
package/README.md
CHANGED
|
@@ -102,6 +102,14 @@ To release that build (i.e. publish new downloads and an auto-update), run:
|
|
|
102
102
|
todesktop release
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
+
### Step 6: Run smoke test
|
|
106
|
+
|
|
107
|
+
To test whether that build works fine and can be successfully updated, run:
|
|
108
|
+
|
|
109
|
+
```sh
|
|
110
|
+
todesktop smoke-test
|
|
111
|
+
```
|
|
112
|
+
|
|
105
113
|
See the next section for more information on the available commands.
|
|
106
114
|
|
|
107
115
|
## CLI Commands
|
|
@@ -140,6 +148,10 @@ We also support:
|
|
|
140
148
|
- Append `--config=<path.to.another.todesktop.json>` to use a different configuration file.
|
|
141
149
|
- Append `--exit` to disable dynamic pagination and exit the process once the build data has been displayed.
|
|
142
150
|
- `todesktop logout`. Logs you out.
|
|
151
|
+
- `todesktop smoke-test` Check whether the build works and can be successfully updated.
|
|
152
|
+
- Use `todesktop smoke-test <id>` to test a specific build by ID.
|
|
153
|
+
- `todesktop smoke-test --latest` will test the latest build.
|
|
154
|
+
- Append `--config=<path.to.another.todesktop.json>` to use a different configuration file.
|
|
143
155
|
- `todesktop whoami`. Prints the email of the account you're signed into.
|
|
144
156
|
- `todesktop --help`. Shows the help documentation.
|
|
145
157
|
- `todesktop --version`. Shows the current version of the CLI.
|