erosolar-cli 2.1.219 → 2.1.221
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/shell/interactiveShell.js +1 -1
- package/dist/shell/interactiveShell.js.map +1 -1
- package/dist/tools/bashTools.d.ts.map +1 -1
- package/dist/tools/bashTools.js +14 -0
- package/dist/tools/bashTools.js.map +1 -1
- package/dist/tools/diffUtils.d.ts +2 -1
- package/dist/tools/diffUtils.d.ts.map +1 -1
- package/dist/tools/diffUtils.js +29 -10
- package/dist/tools/diffUtils.js.map +1 -1
- package/dist/ui/ShellUIAdapter.d.ts +1 -0
- package/dist/ui/ShellUIAdapter.d.ts.map +1 -1
- package/dist/ui/ShellUIAdapter.js +31 -2
- package/dist/ui/ShellUIAdapter.js.map +1 -1
- package/dist/ui/toolDisplay.d.ts.map +1 -1
- package/dist/ui/toolDisplay.js +11 -2
- package/dist/ui/toolDisplay.js.map +1 -1
- package/package.json +1 -1
|
@@ -1244,7 +1244,7 @@ export class InteractiveShell {
|
|
|
1244
1244
|
}
|
|
1245
1245
|
// Remove ANSI codes and collapse whitespace/newlines
|
|
1246
1246
|
const plain = value
|
|
1247
|
-
.replace(/\u001B\[[0-?]*[ -/]*[@-~]/g, '')
|
|
1247
|
+
.replace(/\u001B\[[0-?]*[ -/]*[@-~]/g, '') // eslint-disable-line no-control-regex
|
|
1248
1248
|
.split('\n')
|
|
1249
1249
|
.map((line) => line.trim())
|
|
1250
1250
|
.filter(Boolean)
|