@linzumi/cli 0.0.10-beta → 0.0.11-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 +2 -2
- package/src/index.ts +2 -2
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ address.
|
|
|
43
43
|
To pin this exact beta:
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
npm install -g @linzumi/cli@0.0.
|
|
46
|
+
npm install -g @linzumi/cli@0.0.11-beta
|
|
47
47
|
linzumi start ~/code/my-app
|
|
48
48
|
```
|
|
49
49
|
|
|
@@ -247,7 +247,7 @@ linzumi --version
|
|
|
247
247
|
Expected:
|
|
248
248
|
|
|
249
249
|
```text
|
|
250
|
-
linzumi 0.0.
|
|
250
|
+
linzumi 0.0.11-beta
|
|
251
251
|
```
|
|
252
252
|
|
|
253
253
|
If `linzumi` is not found, your global npm bin directory is not on `PATH`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@linzumi/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11-beta",
|
|
4
4
|
"description": "Connect your computer to Kandan for local Codex sessions, editors, and forwarded previews",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"node": ">=20",
|
|
30
30
|
"bun": ">=1.2.0"
|
|
31
31
|
},
|
|
32
|
-
"
|
|
32
|
+
"readmeFilename": "README.md"
|
|
33
33
|
}
|
package/src/index.ts
CHANGED
|
@@ -101,7 +101,7 @@ async function main(args: readonly string[]): Promise<void> {
|
|
|
101
101
|
process.stdout.write(connectGuideText());
|
|
102
102
|
return;
|
|
103
103
|
case "version":
|
|
104
|
-
process.stdout.write("linzumi 0.0.
|
|
104
|
+
process.stdout.write("linzumi 0.0.11-beta\n");
|
|
105
105
|
return;
|
|
106
106
|
case "auth":
|
|
107
107
|
await runAuthCommand(parsed.args);
|
|
@@ -347,7 +347,7 @@ export async function parseRunnerArgs(
|
|
|
347
347
|
}
|
|
348
348
|
|
|
349
349
|
if (values.get("version") === true) {
|
|
350
|
-
process.stdout.write("linzumi 0.0.
|
|
350
|
+
process.stdout.write("linzumi 0.0.11-beta\n");
|
|
351
351
|
process.exit(0);
|
|
352
352
|
}
|
|
353
353
|
|