@elgato/cli 1.3.0 → 1.5.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 +4 -2
- package/bin/streamdeck.mjs +3 -3
- package/dist/index.d.ts +7 -1
- package/dist/index.js +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
# Stream Deck CLI
|
|
6
6
|
|
|
7
7
|
[](https://docs.elgato.com/streamdeck/cli)
|
|
8
|
-
[](https://elgato.com)
|
|
9
9
|
[](https://discord.gg/GehBUcu627)
|
|
10
10
|
[](https://www.npmjs.com/package/@elgato/cli)
|
|
11
11
|
[](https://github.com/elgatosf/cli/actions)
|
|
@@ -25,18 +25,20 @@ Usage: streamdeck [options] [command]
|
|
|
25
25
|
|
|
26
26
|
Options:
|
|
27
27
|
-v display CLI version
|
|
28
|
+
-l, --list display list of installed plugins
|
|
28
29
|
-h, --help display help for command
|
|
29
30
|
|
|
30
31
|
Commands:
|
|
31
32
|
create Stream Deck plugin creation wizard.
|
|
32
33
|
link [path] Links the plugin to Stream Deck.
|
|
34
|
+
unlink [options] <uuid> Unlinks the plugin from Stream Deck.
|
|
35
|
+
list [options] Display list of installed plugins.
|
|
33
36
|
restart|r <uuid> Starts the plugin in Stream Deck; if the plugin is already running, it is stopped first.
|
|
34
37
|
stop|s <uuid> Stops the plugin in Stream Deck.
|
|
35
38
|
dev [options] Enables developer mode.
|
|
36
39
|
validate [options] [path] Validates the Stream Deck plugin.
|
|
37
40
|
pack|bundle [options] [path] Creates a .streamDeckPlugin file from the plugin.
|
|
38
41
|
config Manage the local configuration.
|
|
39
|
-
help [command] display help for command
|
|
40
42
|
|
|
41
43
|
Alias:
|
|
42
44
|
streamdeck
|