@linzumi/cli 0.0.13-beta → 0.0.14-beta
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 -2
- package/package.json +1 -1
- package/src/index.ts +2 -2
package/README.md
CHANGED
|
@@ -58,7 +58,7 @@ Chromium-based browser (Chrome, Edge, Arc, or Brave). Safari mostly
|
|
|
58
58
|
works; live collaboration is smoother in Chromium.
|
|
59
59
|
|
|
60
60
|
```bash
|
|
61
|
-
npm install -g @linzumi/cli@
|
|
61
|
+
npm install -g @linzumi/cli@latest
|
|
62
62
|
linzumi start ~/code/my-app
|
|
63
63
|
```
|
|
64
64
|
|
|
@@ -225,7 +225,7 @@ privileges as your shell. Every action is auditable from the thread.
|
|
|
225
225
|
## Pinning a version
|
|
226
226
|
|
|
227
227
|
```bash
|
|
228
|
-
npm install -g @linzumi/cli@0.0.
|
|
228
|
+
npm install -g @linzumi/cli@0.0.14-beta
|
|
229
229
|
linzumi --version
|
|
230
230
|
```
|
|
231
231
|
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -121,7 +121,7 @@ async function main(args: readonly string[]): Promise<void> {
|
|
|
121
121
|
process.stdout.write(connectGuideText());
|
|
122
122
|
return;
|
|
123
123
|
case "version":
|
|
124
|
-
process.stdout.write("linzumi 0.0.
|
|
124
|
+
process.stdout.write("linzumi 0.0.14-beta\n");
|
|
125
125
|
return;
|
|
126
126
|
case "auth":
|
|
127
127
|
await runAuthCommand(parsed.args);
|
|
@@ -614,7 +614,7 @@ export async function parseRunnerArgs(
|
|
|
614
614
|
}
|
|
615
615
|
|
|
616
616
|
if (values.get("version") === true) {
|
|
617
|
-
process.stdout.write("linzumi 0.0.
|
|
617
|
+
process.stdout.write("linzumi 0.0.14-beta\n");
|
|
618
618
|
process.exit(0);
|
|
619
619
|
}
|
|
620
620
|
|