@tscircuit/cli 0.1.104 → 0.1.105

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 CHANGED
@@ -10,14 +10,14 @@ A CLI for developing, managing and publishing tscircuit code (the "npm for tscir
10
10
  # browser preview
11
11
  tsci dev ./path/to/file.tsx
12
12
 
13
- # Clone a snippet from the registry
14
- tsci clone author/snippetName
13
+ # Clone a package from the registry
14
+ tsci clone author/packageName
15
15
 
16
16
  # Add a component from tscircuit.com
17
17
  tsci add author/component-name
18
18
  ```
19
19
 
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!
20
+ > 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!
21
21
 
22
22
  ## Installation
23
23
 
@@ -31,7 +31,7 @@ npm install -g @tscircuit/cli
31
31
  ```
32
32
  Usage: tsci [options] [command]
33
33
 
34
- CLI for developing tscircuit snippets
34
+ CLI for developing tscircuit packages
35
35
 
36
36
  Options:
37
37
  -h, --help display help for command
@@ -40,9 +40,9 @@ Commands:
40
40
  init [directory] Initialize a new TSCircuit project in the
41
41
  specified directory (or current directory if none
42
42
  is provided)
43
- dev [options] [file] Start development server for a snippet
44
- clone [options] <snippet> Clone a snippet from the registry
45
- push [options] [file] Save snippet code to Registry API
43
+ dev [options] [file] Start development server for a package
44
+ clone [options] <package> Clone a package from the registry
45
+ push [options] [file] Save package code to Registry API
46
46
  auth Login/logout
47
47
  login Login to tscircuit registry
48
48
  logout Logout from tscircuit registry
@@ -52,7 +52,7 @@ Commands:
52
52
  remove <component> Remove a tscircuit component package from your
53
53
  project
54
54
  upgrade Upgrade CLI to the latest version
55
- search <query> Search for snippets in the tscircuit registry
55
+ search <query> Search for packages in the tscircuit registry
56
56
  version Print CLI version
57
57
  help [command] display help for command
58
58
  ```
@@ -60,7 +60,7 @@ Commands:
60
60
 
61
61
  ## Development
62
62
 
63
- This command will open the `snippets.tsx` file for editing.
63
+ This command will open the `index.tsx` file for editing.
64
64
 
65
65
  ```bash
66
66
  bun run dev
package/dist/main.js CHANGED
@@ -433495,7 +433495,7 @@ var getGlobalDepsInstallCommand = (packageManager, deps) => {
433495
433495
  import { execSync as execSync2 } from "node:child_process";
433496
433496
  var import_semver = __toESM2(require_semver2(), 1);
433497
433497
  // package.json
433498
- var version = "0.1.103";
433498
+ var version = "0.1.104";
433499
433499
  var package_default = {
433500
433500
  name: "@tscircuit/cli",
433501
433501
  version,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/cli",
3
- "version": "0.1.104",
3
+ "version": "0.1.105",
4
4
  "main": "dist/main.js",
5
5
  "devDependencies": {
6
6
  "@babel/standalone": "^7.26.9",