@absolutejs/absolute 0.19.0-beta.701 → 0.19.0-beta.702

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 CHANGED
@@ -134,6 +134,14 @@ await build({
134
134
 
135
135
  No separate config files or environment variables—just explicit arguments with sensible defaults.
136
136
 
137
+ ## Workspace Dev Logs
138
+
139
+ `absolute workspace dev` keeps the TUI focused on service status and live service output. Full logs are also written to `.absolutejs/workspace/logs/`, including `all.log` and one file per service, so long output can be copied or searched outside the TUI:
140
+
141
+ ```bash
142
+ tail -n 200 .absolutejs/workspace/logs/all.log
143
+ ```
144
+
137
145
  ---
138
146
 
139
147
  ## Roadmap
package/dist/cli/index.js CHANGED
@@ -3609,7 +3609,6 @@ var workspace = async (subcommand, options) => {
3609
3609
  });
3610
3610
  const workspaceLogs = createWorkspaceLogSink(tui.addLog);
3611
3611
  const addLog = workspaceLogs.appendLog;
3612
- addLog("workspace", `Writing workspace logs to ${workspaceLogs.logDirectory}`, "info");
3613
3612
  const killProcesses = async () => {
3614
3613
  const snapshot = [...running];
3615
3614
  running.length = 0;
@@ -3757,7 +3756,6 @@ var workspace = async (subcommand, options) => {
3757
3756
  workspaceBootStartedAt = performance.now();
3758
3757
  await startServices();
3759
3758
  tui.setReadyDuration(performance.now() - workspaceBootStartedAt);
3760
- addLog("workspace", "Workspace ready.", "success");
3761
3759
  };
3762
3760
  const togglePause = () => {
3763
3761
  if (paused) {
@@ -3829,10 +3827,8 @@ var workspace = async (subcommand, options) => {
3829
3827
  shutdown(0);
3830
3828
  });
3831
3829
  tui.start();
3832
- addLog("workspace", `Workspace booting ${orderedNames.length} services.`, "info");
3833
3830
  await startServices();
3834
3831
  tui.setReadyDuration(performance.now() - workspaceBootStartedAt);
3835
- addLog("workspace", "Workspace ready.", "success");
3836
3832
  await new Promise(() => {});
3837
3833
  };
3838
3834
 
package/package.json CHANGED
@@ -219,12 +219,12 @@
219
219
  "main": "./dist/index.js",
220
220
  "name": "@absolutejs/absolute",
221
221
  "optionalDependencies": {
222
- "@absolutejs/native-darwin-arm64": "0.19.0-beta.701",
223
- "@absolutejs/native-darwin-x64": "0.19.0-beta.701",
224
- "@absolutejs/native-linux-arm64": "0.19.0-beta.701",
225
- "@absolutejs/native-linux-x64": "0.19.0-beta.701",
226
- "@absolutejs/native-windows-arm64": "0.19.0-beta.701",
227
- "@absolutejs/native-windows-x64": "0.19.0-beta.701"
222
+ "@absolutejs/native-darwin-arm64": "0.19.0-beta.702",
223
+ "@absolutejs/native-darwin-x64": "0.19.0-beta.702",
224
+ "@absolutejs/native-linux-arm64": "0.19.0-beta.702",
225
+ "@absolutejs/native-linux-x64": "0.19.0-beta.702",
226
+ "@absolutejs/native-windows-arm64": "0.19.0-beta.702",
227
+ "@absolutejs/native-windows-x64": "0.19.0-beta.702"
228
228
  },
229
229
  "overrides": {
230
230
  "@typescript-eslint/utils": "8.56.1"
@@ -333,5 +333,5 @@
333
333
  "typecheck": "bun run src/cli/index.ts typecheck --config example/absolute.config.ts"
334
334
  },
335
335
  "types": "./dist/src/index.d.ts",
336
- "version": "0.19.0-beta.701"
336
+ "version": "0.19.0-beta.702"
337
337
  }