pty-manager 1.3.2 → 1.3.3
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 +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/dist/pty-worker.js +3 -3
- package/package.json +1 -1
package/dist/pty-worker.js
CHANGED
|
@@ -433,9 +433,9 @@ var PTYSession = class _PTYSession extends import_events.EventEmitter {
|
|
|
433
433
|
this.clearStallTimer();
|
|
434
434
|
return;
|
|
435
435
|
}
|
|
436
|
-
const
|
|
437
|
-
const
|
|
438
|
-
const hash = this.simpleHash(
|
|
436
|
+
const stripped = this.stripAnsiForStall(this.outputBuffer).trim();
|
|
437
|
+
const tail = stripped.slice(-500);
|
|
438
|
+
const hash = this.simpleHash(tail);
|
|
439
439
|
if (hash === this._lastContentHash) {
|
|
440
440
|
return;
|
|
441
441
|
}
|
package/package.json
CHANGED