@yabasha/gex 1.3.5 → 1.3.6
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 +2 -6
- package/dist/cli.cjs +15 -1210
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.mjs +13 -1205
- package/dist/cli.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ node dist/cli.cjs --help
|
|
|
39
39
|
|
|
40
40
|
### Top-level entry: `gex` (interactive selector)
|
|
41
41
|
|
|
42
|
-
Starting with v1.3.
|
|
42
|
+
Starting with v1.3.6, the primary `gex` binary is an interactive launcher that lets you choose which runtime to use:
|
|
43
43
|
|
|
44
44
|
```bash
|
|
45
45
|
gex
|
|
@@ -53,11 +53,7 @@ Select a runtime to use:
|
|
|
53
53
|
2) gex-npm (npm / Node.js package manager)
|
|
54
54
|
```
|
|
55
55
|
|
|
56
|
-
Enter `1` for the Bun-based CLI (`gex-bun`) or `2` for the Node/npm-based CLI (`gex-npm`).
|
|
57
|
-
|
|
58
|
-
```bash
|
|
59
|
-
gex local --check-outdated # choose Bun or npm, then run `local` on that runtime
|
|
60
|
-
```
|
|
56
|
+
Enter `1` for the Bun-based CLI (`gex-bun`) or `2` for the Node/npm-based CLI (`gex-npm`). The top-level `gex` command only shows this menu and a short hint; it does **not** execute any audit itself. To actually run commands, invoke `gex-bun` or `gex-npm` directly (see below).
|
|
61
57
|
|
|
62
58
|
### Direct runtimes: `gex-npm` (Node) and `gex-bun` (Bun)
|
|
63
59
|
|