@rs-x/cli 2.0.0-next.0 → 2.0.0-next.10

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
@@ -18,6 +18,11 @@ RSX_SKIP_VSCODE_EXTENSION_INSTALL=true
18
18
  ## What gets installed
19
19
 
20
20
  Installing `@rs-x/cli` gives you the `rsx` command.
21
+ For prerelease builds, install globally to make the `rsx` binary available:
22
+
23
+ ```bash
24
+ npm install -g @rs-x/cli@next
25
+ ```
21
26
 
22
27
  Running `rsx init` installs:
23
28
 
@@ -49,10 +54,10 @@ The rs-x VS Code extension provides:
49
54
  - `rsx doctor`
50
55
  - `rsx add` (aliases: `rsx -a`, `rsx -add`)
51
56
  - `rsx install vscode [--force] [--local] [--dry-run]`
52
- - `rsx install compiler [--pm <pnpm|npm|yarn|bun>] [--dry-run]`
53
- - `rsx setup [--pm <pnpm|npm|yarn|bun>] [--force] [--local] [--dry-run]`
54
- - `rsx init [--pm <pnpm|npm|yarn|bun>] [--entry <path>] [--skip-install] [--skip-vscode] [--force] [--local] [--dry-run]`
55
- - `rsx project [angular|vuejs|react|nextjs|nodejs] [--name <project-name>] [--template <...>] [--pm <pnpm|npm|yarn|bun>] [--skip-install] [--skip-vscode] [--dry-run]`
57
+ - `rsx install compiler [--pm <pnpm|npm|yarn|bun>] [--next] [--dry-run]`
58
+ - `rsx setup [--pm <pnpm|npm|yarn|bun>] [--next] [--force] [--local] [--dry-run]`
59
+ - `rsx init [--pm <pnpm|npm|yarn|bun>] [--entry <path>] [--next] [--skip-install] [--skip-vscode] [--force] [--local] [--dry-run]`
60
+ - `rsx project [angular|vuejs|react|nextjs|nodejs] [--name <project-name>] [--template <...>] [--pm <pnpm|npm|yarn|bun>] [--next] [--skip-install] [--skip-vscode] [--dry-run]`
56
61
  - `rsx build [--project <path-to-tsconfig>] [--out-dir <path>] [--dry-run]`
57
62
  - `rsx typecheck [--project <path-to-tsconfig>] [--dry-run]`
58
63
 
@@ -88,5 +93,6 @@ npx @rs-x/cli init --entry src/main.ts --skip-vscode
88
93
  npx @rs-x/cli setup
89
94
  npx @rs-x/cli install vscode --force
90
95
  npx @rs-x/cli install compiler --pm pnpm
96
+ npx @rs-x/cli install compiler --next
91
97
  npx @rs-x/cli typecheck --project tsconfig.json
92
98
  ```