@tscircuit/cli 0.1.73 → 0.1.75
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 -0
- package/dist/main.js +3507 -3373
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,6 +12,9 @@ tsci dev ./path/to/file.tsx
|
|
|
12
12
|
|
|
13
13
|
# Clone a snippet from the registry
|
|
14
14
|
tsci clone author/snippetName
|
|
15
|
+
|
|
16
|
+
# Add a component from tscircuit.com
|
|
17
|
+
tsci add author/component-name
|
|
15
18
|
```
|
|
16
19
|
|
|
17
20
|
> Note: The snippets CLI uses the same configuration files as the [@tscircuit/cli](https://github.com/tscircuit/cli), so you may need to also install `npm install -g @tscircuit/cli` and run `tsci login` to authenticate!
|
|
@@ -45,6 +48,7 @@ Commands:
|
|
|
45
48
|
logout Logout from tscircuit registry
|
|
46
49
|
config Manage tscircuit CLI configuration
|
|
47
50
|
export [options] <file> Export tscircuit code to various formats
|
|
51
|
+
add <component> Add a component from tscircuit.com
|
|
48
52
|
help [command] display help for command
|
|
49
53
|
```
|
|
50
54
|
<!-- END_HELP_OUTPUT -->
|