@adhdev/daemon-core 0.8.97 → 0.8.98

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/dist/index.mjs CHANGED
@@ -1756,6 +1756,7 @@ var init_provider_cli_config = __esm({
1756
1756
  // src/cli-adapters/provider-cli-runtime.ts
1757
1757
  import * as os9 from "os";
1758
1758
  import * as path10 from "path";
1759
+ import { DEFAULT_SESSION_HOST_COLS, DEFAULT_SESSION_HOST_ROWS } from "@adhdev/session-host-core";
1759
1760
  function resolveCliSpawnPlan(options) {
1760
1761
  const { provider, runtimeSettings, workingDir, extraArgs } = options;
1761
1762
  const { spawn: spawnConfig } = provider;
@@ -1789,8 +1790,8 @@ function resolveCliSpawnPlan(options) {
1789
1790
  isWin,
1790
1791
  useShell,
1791
1792
  ptyOptions: {
1792
- cols: 80,
1793
- rows: 24,
1793
+ cols: DEFAULT_SESSION_HOST_COLS,
1794
+ rows: DEFAULT_SESSION_HOST_ROWS,
1794
1795
  cwd: workingDir,
1795
1796
  env: buildCliSpawnEnv(process.env, spawnConfig.env)
1796
1797
  }