@parcel/utils 2.0.0-nightly.852 → 2.0.0-nightly.854

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/lib/ansi-html.js CHANGED
@@ -5,10 +5,10 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.ansiHtml = ansiHtml;
7
7
 
8
- function _ansiHtml() {
9
- const data = _interopRequireDefault(require("ansi-html"));
8
+ function _ansiHtmlCommunity() {
9
+ const data = _interopRequireDefault(require("ansi-html-community"));
10
10
 
11
- _ansiHtml = function () {
11
+ _ansiHtmlCommunity = function () {
12
12
  return data;
13
13
  };
14
14
 
@@ -20,5 +20,5 @@ var _escapeHtml = require("./escape-html");
20
20
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21
21
 
22
22
  function ansiHtml(ansi) {
23
- return (0, _ansiHtml().default)((0, _escapeHtml.escapeHTML)(ansi));
23
+ return (0, _ansiHtmlCommunity().default)((0, _escapeHtml.escapeHTML)(ansi));
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parcel/utils",
3
- "version": "2.0.0-nightly.852+843eb50e",
3
+ "version": "2.0.0-nightly.854+fa9ea38f",
4
4
  "description": "Blazing fast, zero configuration web application bundler",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -21,13 +21,13 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@iarna/toml": "^2.2.0",
24
- "@parcel/codeframe": "2.0.0-nightly.852+843eb50e",
25
- "@parcel/diagnostic": "2.0.0-nightly.852+843eb50e",
26
- "@parcel/hash": "2.0.0-nightly.2474+843eb50e",
27
- "@parcel/logger": "2.0.0-nightly.852+843eb50e",
28
- "@parcel/markdown-ansi": "2.0.0-nightly.852+843eb50e",
24
+ "@parcel/codeframe": "2.0.0-nightly.854+fa9ea38f",
25
+ "@parcel/diagnostic": "2.0.0-nightly.854+fa9ea38f",
26
+ "@parcel/hash": "2.0.0-nightly.2476+fa9ea38f",
27
+ "@parcel/logger": "2.0.0-nightly.854+fa9ea38f",
28
+ "@parcel/markdown-ansi": "2.0.0-nightly.854+fa9ea38f",
29
29
  "@parcel/source-map": "2.0.0-rc.7",
30
- "ansi-html": "^0.0.7",
30
+ "ansi-html-community": "0.0.8",
31
31
  "chalk": "^4.1.0",
32
32
  "clone": "^2.1.1",
33
33
  "fast-glob": "3.1.1",
@@ -46,5 +46,5 @@
46
46
  "@babel/plugin-transform-flow-strip-types": "^7.2.0",
47
47
  "random-int": "^1.0.0"
48
48
  },
49
- "gitHead": "843eb50ef398f61acd07847bc12a9f72aef02c06"
49
+ "gitHead": "fa9ea38f214836890c418c8b002d98aed56e4f09"
50
50
  }
package/src/ansi-html.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // @flow strict-local
2
- import ansiHTML from 'ansi-html';
2
+ import ansiHTML from 'ansi-html-community';
3
3
  import {escapeHTML} from './escape-html';
4
4
 
5
5
  export function ansiHtml(ansi: string): string {