@tscircuit/cli 0.1.613 → 0.1.615

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.
Files changed (3) hide show
  1. package/README.md +4 -12
  2. package/dist/main.js +441 -377
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -7,16 +7,8 @@ https://github.com/user-attachments/assets/0228e09d-48fc-4bf5-814b-762b60fc35c7
7
7
  ## Usage
8
8
 
9
9
  ```bash
10
- # Start a local server that watches for changes in
11
- # this file or it's dependencies and updates the
12
- # browser preview
13
- tsci dev ./path/to/file.tsx
14
-
15
- # Clone a package from the registry
16
- tsci clone author/packageName
17
-
18
- # Add a component from tscircuit.com
19
- tsci add author/component-name
10
+ # Start a local dev server in your current directory
11
+ tsci dev
20
12
  ```
21
13
 
22
14
  > Note: The packages 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!
@@ -24,7 +16,7 @@ tsci add author/component-name
24
16
  ## Installation
25
17
 
26
18
  ```bash
27
- npm install -g @tscircuit/cli
19
+ npm install -g tscircuit
28
20
  ```
29
21
 
30
22
  ## CLI USAGE
@@ -109,4 +101,4 @@ runframe each time you'd like to load a new version of runframe.
109
101
  export RUNFRAME_STANDALONE_FILE_PATH=../runframe/dist/standalone.min.js
110
102
  cd ../runframe && bun run build
111
103
  cd ../cli && bun run dev
112
- ```
104
+ ```