@elgato/cli 0.2.0 → 0.3.0-beta.0
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 +40 -8
- package/bin/streamdeck.mjs +86646 -4
- package/package.json +9 -3
package/README.md
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
# Maker CLI (Beta)
|
|
6
6
|
|
|
7
7
|
[](https://www.npmjs.com/package/@elgato/cli)
|
|
8
|
+
[](https://github.com/elgatosf/cli/actions)
|
|
8
9
|
[](https://docs.elgato.com/sdk)
|
|
9
10
|
[](https://discord.gg/GehBUcu627)
|
|
10
11
|
[](https://elgato.com)
|
|
@@ -23,16 +24,15 @@ npm install -g @elgato/cli
|
|
|
23
24
|
Usage: streamdeck [options] [command]
|
|
24
25
|
|
|
25
26
|
Options:
|
|
26
|
-
-h, --help
|
|
27
|
+
-h, --help display help for command
|
|
27
28
|
|
|
28
29
|
Commands:
|
|
29
|
-
create
|
|
30
|
-
link [path]
|
|
31
|
-
restart|r <uuid>
|
|
32
|
-
stop|s <uuid>
|
|
33
|
-
dev [options]
|
|
34
|
-
config
|
|
35
|
-
help [command] display help for command
|
|
30
|
+
create Stream Deck plugin creation wizard.
|
|
31
|
+
link [path] Links the plugin to Stream Deck.
|
|
32
|
+
restart|r <uuid> Starts the plugin in Stream Deck; if the plugin is already running, it is stopped first.
|
|
33
|
+
stop|s <uuid> Stops the plugin in Stream Deck.
|
|
34
|
+
dev [options] Enables developer mode.
|
|
35
|
+
config Manage the local configuration.
|
|
36
36
|
|
|
37
37
|
Alias:
|
|
38
38
|
streamdeck
|
|
@@ -124,6 +124,38 @@ Instructs Stream Deck to stop the plugin, as determined by the UUID. When stoppe
|
|
|
124
124
|
#### See Also
|
|
125
125
|
|
|
126
126
|
- [restart](#%EF%B8%8F-restart)
|
|
127
|
+
<!--
|
|
128
|
+
|
|
129
|
+
## ✅ validate
|
|
130
|
+
|
|
131
|
+
Validates the Stream Deck plugin.
|
|
132
|
+
|
|
133
|
+
### Synopsis
|
|
134
|
+
|
|
135
|
+
```
|
|
136
|
+
streamdeck validate [path]
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
### Description
|
|
140
|
+
|
|
141
|
+
Validates the Stream Deck plugin in the current working directory, or `path` when specified, and outputs the validation results. By default, the command will automatically check and install validation rule updates; this check occurs daily, unless forced with `--force-update-check` or prevented with `--no-update-check`.
|
|
142
|
+
|
|
143
|
+
### Configuration
|
|
144
|
+
|
|
145
|
+
#### `--force-update-check`
|
|
146
|
+
|
|
147
|
+
- Default: `false`
|
|
148
|
+
- Type: Boolean
|
|
149
|
+
|
|
150
|
+
Forces an update check of new validation rules; by default, an update check will occur once a day. Cannot be used in conjunction with `--no-update-check`.
|
|
151
|
+
|
|
152
|
+
#### `--no-update-check`
|
|
153
|
+
|
|
154
|
+
- Default: `false`
|
|
155
|
+
- Type: Boolean
|
|
156
|
+
|
|
157
|
+
Prevents an update check of new validation rules. This configuration option is recommended when using the CLI as part of a build pipeline. Cannot be used in conjunction with `--force-update-check`.
|
|
158
|
+
-->
|
|
127
159
|
|
|
128
160
|
## 🏗️ dev
|
|
129
161
|
|