@treeseed/cli 0.6.14 → 0.6.16
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.
|
@@ -1054,13 +1054,25 @@ const CLI_COMMAND_OVERLAYS = /* @__PURE__ */ new Map([
|
|
|
1054
1054
|
options: DEV_RUNTIME_OPTIONS,
|
|
1055
1055
|
examples: ["treeseed dev", "treeseed dev --plan --json", "treeseed dev --surface web --port 4322 --open off"],
|
|
1056
1056
|
help: {
|
|
1057
|
-
longSummary: [
|
|
1057
|
+
longSummary: [
|
|
1058
|
+
"Dev starts the unified local Treeseed runtime as a foreground supervisor so you can work against the integrated web, API, and supporting local surfaces.",
|
|
1059
|
+
"The command keeps streaming logs and dev events until you press Ctrl+C, receive SIGTERM, or a required surface fails; shutdown stops every service process group it started."
|
|
1060
|
+
],
|
|
1061
|
+
beforeYouRun: [
|
|
1062
|
+
"Run from the tenant or workspace root you want to develop.",
|
|
1063
|
+
"Use `--plan --json` when you want to inspect commands, setup steps, readiness checks, and watched paths without starting services.",
|
|
1064
|
+
"Keep the foreground process running while you test. Press Ctrl+C to stop the supervised stack and free the local ports."
|
|
1065
|
+
],
|
|
1058
1066
|
examples: [
|
|
1059
|
-
example("treeseed dev", "Start integrated local development", "Run the default integrated local runtime."),
|
|
1067
|
+
example("treeseed dev", "Start integrated local development", "Run the default integrated local runtime and keep supervising it in the foreground."),
|
|
1060
1068
|
example("treeseed dev --plan --json", "Inspect the runtime plan", "Emit a structured plan with setup steps, commands, ports, URLs, readiness checks, and watch entries."),
|
|
1061
1069
|
example("treeseed dev --surface web --port 4322 --open off", "Run only the web surface", "Start the Astro UI on a specific port without opening a browser."),
|
|
1062
1070
|
example("trsd dev", "Use the short alias", "Start the same local runtime through the shorter entrypoint."),
|
|
1063
1071
|
example("treeseed dev --json", "Stream dev events", "Emit newline-delimited events while the long-running dev process supervises local services.")
|
|
1072
|
+
],
|
|
1073
|
+
outcomes: [
|
|
1074
|
+
"Starts the selected local surfaces, waits for readiness, and then remains attached as the live supervisor.",
|
|
1075
|
+
"Stops watchers first and then terminates service process groups when the foreground command exits."
|
|
1064
1076
|
]
|
|
1065
1077
|
},
|
|
1066
1078
|
executionMode: "handler",
|
|
@@ -1070,9 +1082,12 @@ const CLI_COMMAND_OVERLAYS = /* @__PURE__ */ new Map([
|
|
|
1070
1082
|
options: DEV_RUNTIME_OPTIONS,
|
|
1071
1083
|
examples: ["treeseed dev:watch", "treeseed dev:watch --json"],
|
|
1072
1084
|
help: {
|
|
1073
|
-
longSummary: [
|
|
1085
|
+
longSummary: [
|
|
1086
|
+
"Dev:watch is a compatibility alias for foreground dev supervision with live feedback enabled.",
|
|
1087
|
+
"It stays attached to the terminal and cleans up supervised services on Ctrl+C just like `dev`."
|
|
1088
|
+
],
|
|
1074
1089
|
examples: [
|
|
1075
|
-
example("treeseed dev:watch", "Start watch mode", "Run the local runtime with watch and rebuild behavior enabled."),
|
|
1090
|
+
example("treeseed dev:watch", "Start watch mode", "Run the local runtime with watch and rebuild behavior enabled in the foreground."),
|
|
1076
1091
|
example("trsd dev:watch", "Use the short alias", "Start the same watch-mode runtime through the shorter entrypoint."),
|
|
1077
1092
|
example("treeseed dev:watch --feedback restart", "Restart services without browser reload", "Use watcher-driven service restarts while leaving browser refresh to your own tooling."),
|
|
1078
1093
|
example("treeseed dev:watch --help", "Inspect watch help", "Read the help surface before starting a longer watch session.")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@treeseed/cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.16",
|
|
4
4
|
"description": "Operator-facing Treeseed CLI package.",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"repository": {
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"release:publish": "node ./scripts/run-ts.mjs ./scripts/publish-package.ts"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@treeseed/sdk": "0.6.
|
|
48
|
+
"@treeseed/sdk": "0.6.16",
|
|
49
49
|
"ink": "^7.0.0",
|
|
50
50
|
"react": "^19.2.5"
|
|
51
51
|
},
|