@tarcisiopgs/lisa 1.22.1 → 1.22.2
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/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -546,12 +546,13 @@ import { spawn } from "child_process";
|
|
|
546
546
|
import { platform } from "os";
|
|
547
547
|
var ANSI_REGEX = /\x1b(?:\[[0-9;?]*[a-zA-Z]|\][^\x07]*\x07|\([A-Z0-9]|[A-Z])/g;
|
|
548
548
|
var CTRL_D_REGEX = /\x04/g;
|
|
549
|
+
var CARET_D_BACKSPACE_REGEX = /\^D\x08\x08/g;
|
|
549
550
|
function stripAnsi(text2) {
|
|
550
|
-
return text2.replace(ANSI_REGEX, "").replace(CTRL_D_REGEX, "").replace(/\r\n/g, "\n").replace(/\r/g, "");
|
|
551
|
+
return text2.replace(ANSI_REGEX, "").replace(CTRL_D_REGEX, "").replace(CARET_D_BACKSPACE_REGEX, "").replace(/\r\n/g, "\n").replace(/\r/g, "");
|
|
551
552
|
}
|
|
552
553
|
function buildPtyArgs(command, os) {
|
|
553
554
|
const currentOs = os ?? platform();
|
|
554
|
-
const wrappedCommand =
|
|
555
|
+
const wrappedCommand = `stty eof undef 2>/dev/null; ${command} < /dev/null`;
|
|
555
556
|
if (currentOs === "darwin") {
|
|
556
557
|
return { file: "script", args: ["-qF", "/dev/null", "sh", "-c", wrappedCommand] };
|
|
557
558
|
}
|