@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.js +10 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/node_modules/@adhdev/session-host-core/dist/defaults.d.mts +6 -0
- package/node_modules/@adhdev/session-host-core/dist/defaults.d.ts +6 -0
- package/node_modules/@adhdev/session-host-core/dist/defaults.js +49 -0
- package/node_modules/@adhdev/session-host-core/dist/defaults.js.map +1 -0
- package/node_modules/@adhdev/session-host-core/dist/defaults.mjs +21 -0
- package/node_modules/@adhdev/session-host-core/dist/defaults.mjs.map +1 -0
- package/node_modules/@adhdev/session-host-core/dist/index.d.mts +1 -0
- package/node_modules/@adhdev/session-host-core/dist/index.d.ts +1 -0
- package/node_modules/@adhdev/session-host-core/dist/index.js +25 -2
- package/node_modules/@adhdev/session-host-core/dist/index.js.map +1 -1
- package/node_modules/@adhdev/session-host-core/dist/index.mjs +21 -2
- package/node_modules/@adhdev/session-host-core/dist/index.mjs.map +1 -1
- package/node_modules/@adhdev/session-host-core/package.json +7 -1
- package/package.json +1 -1
- package/src/cli-adapters/provider-cli-runtime.ts +3 -2
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:
|
|
1793
|
-
rows:
|
|
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
|
}
|