@adhdev/daemon-standalone 0.9.82-rc.161 → 0.9.82-rc.162
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 +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -61231,8 +61231,9 @@ ${formatManifestValidationIssues2(validation.issues)}`,
|
|
|
61231
61231
|
var fs9 = __toESM2(require("fs"));
|
|
61232
61232
|
var os14 = __toESM2(require("os"));
|
|
61233
61233
|
var path18 = __toESM2(require("path"));
|
|
61234
|
-
var
|
|
61234
|
+
var xtermHeadlessNs = __toESM2(require_xterm_headless());
|
|
61235
61235
|
init_pty_transport();
|
|
61236
|
+
var TerminalCtor2 = xtermHeadlessNs.Terminal ?? xtermHeadlessNs.default?.Terminal;
|
|
61236
61237
|
var TerminalAdapter = class {
|
|
61237
61238
|
constructor(opts, handlers) {
|
|
61238
61239
|
this.opts = opts;
|
|
@@ -61242,7 +61243,7 @@ ${formatManifestValidationIssues2(validation.issues)}`,
|
|
|
61242
61243
|
this.screenDebounceMs = opts.screenChangeDebounceMs ?? 80;
|
|
61243
61244
|
this.tickIntervalMs = opts.tickIntervalMs ?? 0;
|
|
61244
61245
|
this.factory = opts.transportFactory ?? new NodePtyTransportFactory();
|
|
61245
|
-
this.term = new
|
|
61246
|
+
this.term = new TerminalCtor2({ cols: this.cols, rows: this.rows, allowProposedApi: true, scrollback: 1e3 });
|
|
61246
61247
|
}
|
|
61247
61248
|
term;
|
|
61248
61249
|
pty = null;
|