@tscircuit/cli 0.1.95 → 0.1.97
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 +16 -15
- package/dist/main.js +3245 -3177
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,23 +34,24 @@ Usage: tsci [options] [command]
|
|
|
34
34
|
CLI for developing tscircuit snippets
|
|
35
35
|
|
|
36
36
|
Options:
|
|
37
|
-
-V, --version
|
|
38
|
-
-h, --help
|
|
37
|
+
-V, --version output the version number
|
|
38
|
+
-h, --help display help for command
|
|
39
39
|
|
|
40
40
|
Commands:
|
|
41
|
-
init [directory]
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
41
|
+
init [directory] Initialize a new TSCircuit project in the
|
|
42
|
+
specified directory (or current directory if none
|
|
43
|
+
is provided)
|
|
44
|
+
dev [options] [file] Start development server for a snippet
|
|
45
|
+
clone [options] <snippet> Clone a snippet from the registry
|
|
46
|
+
push [options] [file] Save snippet code to Registry API
|
|
47
|
+
auth Login/logout
|
|
48
|
+
login Login to tscircuit registry
|
|
49
|
+
logout Logout from tscircuit registry
|
|
50
|
+
config Manage tscircuit CLI configuration
|
|
51
|
+
export [options] <file> Export tscircuit code to various formats
|
|
52
|
+
add <component> Add a component from tscircuit.com
|
|
53
|
+
upgrade Upgrade CLI to the latest version
|
|
54
|
+
help [command] display help for command
|
|
54
55
|
```
|
|
55
56
|
<!-- END_HELP_OUTPUT -->
|
|
56
57
|
|