ework-aio 0.3.6 → 0.3.7
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/package.json +1 -1
- package/src/cli.ts +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ework-aio",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
4
4
|
"description": "All-in-one installer for ework (issue tracker) + ework-daemon (AI bridge) + opencode-ework (plugin). One command: npm i -g ework-aio && ework-aio install.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
package/src/cli.ts
CHANGED
|
@@ -49,7 +49,7 @@ Commands:
|
|
|
49
49
|
Add 'systemd' to also write+enable systemd
|
|
50
50
|
units. Without 'systemd', runs in pure
|
|
51
51
|
PID-file mode (no systemctl calls).
|
|
52
|
-
upgrade
|
|
52
|
+
upgrade | update Pull latest ework-aio from npm and restart
|
|
53
53
|
services. Use this to update — don't re-run
|
|
54
54
|
'install' for version bumps.
|
|
55
55
|
uninstall Stop services and remove units (data preserved)
|
|
@@ -434,7 +434,8 @@ export async function main(
|
|
|
434
434
|
await runInstall(opts, logger);
|
|
435
435
|
return 0;
|
|
436
436
|
}
|
|
437
|
-
case "upgrade":
|
|
437
|
+
case "upgrade":
|
|
438
|
+
case "update": {
|
|
438
439
|
await runUpgrade(opts, logger);
|
|
439
440
|
return 0;
|
|
440
441
|
}
|