@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 +10 -4
- package/bin/rsx.cjs +493 -149
- package/package.json +14 -1
- package/{rs-x-vscode-extension-2.0.0-next.0.vsix → rs-x-vscode-extension-2.0.0-next.10.vsix} +0 -0
- package/templates/angular-demo/README.md +115 -0
- package/templates/angular-demo/src/app/app.component.css +97 -0
- package/templates/angular-demo/src/app/app.component.html +58 -0
- package/templates/angular-demo/src/app/app.component.ts +52 -0
- package/templates/angular-demo/src/app/virtual-table/row-data.ts +35 -0
- package/templates/angular-demo/src/app/virtual-table/row-model.ts +45 -0
- package/templates/angular-demo/src/app/virtual-table/virtual-table-data.service.ts +136 -0
- package/templates/angular-demo/src/app/virtual-table/virtual-table-model.ts +224 -0
- package/templates/angular-demo/src/app/virtual-table/virtual-table.component.css +174 -0
- package/templates/angular-demo/src/app/virtual-table/virtual-table.component.html +50 -0
- package/templates/angular-demo/src/app/virtual-table/virtual-table.component.ts +83 -0
- package/templates/angular-demo/src/index.html +11 -0
- package/templates/angular-demo/src/main.ts +16 -0
- package/templates/angular-demo/src/styles.css +261 -0
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
|
```
|