@vsceasy/cli 0.1.1 → 0.1.3

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
@@ -4,10 +4,22 @@ Build VS Code extensions fast. React UI + typed RPC bridge between extension and
4
4
 
5
5
  > Status: v0.1 — React UI. Typed RPC bridge + file-based registry + scaffolding for panels, commands, menus, tree views, subpanels, status bars.
6
6
 
7
+ ## Install
8
+
9
+ Run with no install via `bunx @vsceasy/cli …` (or `npx @vsceasy/cli …`), or
10
+ install the binary globally to use the short `vsceasy` command:
11
+
12
+ ```bash
13
+ bun add -g @vsceasy/cli # or: npm i -g @vsceasy/cli
14
+
15
+ # use globally
16
+ vsceasy --version
17
+ ```
18
+
7
19
  ## Quick start
8
20
 
9
21
  ```bash
10
- bunx vsceasy create my-extension
22
+ bunx @vsceasy/cli create my-extension
11
23
  cd my-extension
12
24
  bun install
13
25
  bun run dev
@@ -17,7 +29,7 @@ bun run dev
17
29
  Or with flags:
18
30
 
19
31
  ```bash
20
- bunx vsceasy create \
32
+ bunx @vsceasy/cli create \
21
33
  --name my-extension \
22
34
  --displayName "My Extension" \
23
35
  --description "Does cool things" \
package/dist/bin/cli.js CHANGED
@@ -9006,7 +9006,7 @@ var init_cli = __esm(() => {
9006
9006
  import_cli_maker20 = __toESM(require_dist(), 1);
9007
9007
  cli = new import_cli_maker20.CLI("vsceasy", "Build VS Code extensions fast — React UI + typed RPC bridge + zero-config build.", {
9008
9008
  interactive: true,
9009
- version: "0.1.0",
9009
+ version: "0.1.3",
9010
9010
  introAnimation: {
9011
9011
  enabled: true,
9012
9012
  preset: "retro-space",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsceasy/cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Build VS Code extensions fast — React UI + typed RPC bridge between extension and webview + file-based routing for panels, commands, menus, tree views, and subpanels.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {