Skip to content

Commit 41a7127

Browse files
committed
chore(deps): Update dependencies
1 parent 04b5f73 commit 41a7127

File tree

7 files changed

+4001
-2123
lines changed

7 files changed

+4001
-2123
lines changed

client/ansi/filters/ansi.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
'use strict';
22

3-
var ansi_up = require('ansi_up');
3+
var AU = require('ansi_up');
4+
var ansi_up = new AU.default;
5+
var stripAnsi = require('strip-ansi');
46

57
module.exports = function () {
68
return function (input, plaintext) {
@@ -15,8 +17,8 @@ module.exports = function () {
1517
.replace(/^[^\n]*\u001b\[0G/gm, '');
1618

1719
if (startswithcr) input = `\r${input}`;
18-
if (plaintext) return ansi_up.ansi_to_text(input);
20+
if (plaintext) return stripAnsi(input);
1921

20-
return ansi_up.ansi_to_html(ansi_up.escape_for_html(input));
22+
return ansi_up.ansi_to_html(input);
2123
};
2224
};

dist/scripts/app.js

+137-123
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/scripts/bundle.map

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)