@tscircuit/cli 0.1.106 → 0.1.108
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 +6 -4
- package/dist/main.js +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
A CLI for developing, managing and publishing tscircuit code (the "npm for tscircuit")
|
|
4
4
|
|
|
5
|
+
https://github.com/user-attachments/assets/0228e09d-48fc-4bf5-814b-762b60fc35c7
|
|
6
|
+
|
|
5
7
|
## Usage
|
|
6
8
|
|
|
7
9
|
```bash
|
|
@@ -31,7 +33,7 @@ npm install -g @tscircuit/cli
|
|
|
31
33
|
```
|
|
32
34
|
Usage: tsci [options] [command]
|
|
33
35
|
|
|
34
|
-
CLI for developing tscircuit
|
|
36
|
+
CLI for developing tscircuit packages
|
|
35
37
|
|
|
36
38
|
Options:
|
|
37
39
|
-h, --help display help for command
|
|
@@ -40,8 +42,8 @@ Commands:
|
|
|
40
42
|
init [directory] Initialize a new TSCircuit project in the
|
|
41
43
|
specified directory (or current directory if none
|
|
42
44
|
is provided)
|
|
43
|
-
dev [options] [file] Start development server for a
|
|
44
|
-
clone [options] <
|
|
45
|
+
dev [options] [file] Start development server for a package
|
|
46
|
+
clone [options] <package> Clone a package from the registry
|
|
45
47
|
push [options] [file] Save snippet code to Registry API
|
|
46
48
|
auth Login/logout
|
|
47
49
|
login Login to tscircuit registry
|
|
@@ -52,7 +54,7 @@ Commands:
|
|
|
52
54
|
remove <component> Remove a tscircuit component package from your
|
|
53
55
|
project
|
|
54
56
|
upgrade Upgrade CLI to the latest version
|
|
55
|
-
search <query> Search for
|
|
57
|
+
search <query> Search for packages in the tscircuit registry
|
|
56
58
|
version Print CLI version
|
|
57
59
|
help [command] display help for command
|
|
58
60
|
```
|