@cucumber/html-formatter 18.0.0 → 19.0.0
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/.eslintrc.json +51 -0
- package/.mocharc.json +9 -3
- package/.prettierrc.json +5 -0
- package/dist/main.css +5 -5
- package/dist/main.js +1 -1
- package/dist/main.js.LICENSE.txt +2 -1
- package/dist/package.json +48 -29
- package/dist/src/CucumberHtmlStream.d.ts +1 -1
- package/dist/src/CucumberHtmlStream.d.ts.map +1 -1
- package/dist/src/CucumberHtmlStream.js +2 -0
- package/dist/src/CucumberHtmlStream.js.map +1 -1
- package/dist/src/main.d.ts +1 -1
- package/dist/src/main.d.ts.map +1 -1
- package/dist/src/main.js +1 -1
- package/dist/src/main.js.map +1 -1
- package/dist/test/CucumberHtmlStreamTest.js +3 -3
- package/dist/test/CucumberHtmlStreamTest.js.map +1 -1
- package/dist/test/acceptance.d.ts +2 -0
- package/dist/test/acceptance.d.ts.map +1 -0
- package/dist/test/acceptance.js +63 -0
- package/dist/test/acceptance.js.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +48 -29
- package/src/CucumberHtmlStream.ts +21 -9
- package/src/main.tsx +2 -1
- package/test/CucumberHtmlStreamTest.ts +19 -6
- package/test/acceptance.ts +62 -0
- package/tsconfig.build.json +5 -3
- package/tsconfig.json +23 -1
- package/.github/ISSUE_TEMPLATE.md +0 -5
- package/.github/PULL_REQUEST_TEMPLATE.md +0 -5
- package/.rsync +0 -3
- package/.subrepo +0 -1
- package/Dockerfile +0 -15
- package/Makefile +0 -27
- package/README.md +0 -31
- package/bin/cucumber-html-formatter.js +0 -3
- package/check.js +0 -27
- package/default.mk +0 -87
- package/dist/src/cli-main.d.ts +0 -2
- package/dist/src/cli-main.d.ts.map +0 -1
- package/dist/src/cli-main.js +0 -22
- package/dist/src/cli-main.js.map +0 -1
- package/src/cli-main.ts +0 -25
package/dist/main.js.LICENSE.txt
CHANGED
|
@@ -12,8 +12,9 @@ object-assign
|
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
14
|
/*!
|
|
15
|
-
* Font Awesome Free
|
|
15
|
+
* Font Awesome Free 6.1.0 by @fontawesome - https://fontawesome.com
|
|
16
16
|
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
17
|
+
* Copyright 2022 Fonticons, Inc.
|
|
17
18
|
*/
|
|
18
19
|
|
|
19
20
|
/*!
|
package/dist/package.json
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cucumber/html-formatter",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "19.0.0",
|
|
4
4
|
"description": "HTML formatter for Cucumber",
|
|
5
|
-
"bin": {
|
|
6
|
-
"cucumber-html-formatter": "bin/cucumber-html-formatter.js"
|
|
7
|
-
},
|
|
8
5
|
"main": "dist/src/CucumberHtmlStream.js",
|
|
9
6
|
"types": "dist/src/CucumberHtmlStream.d.ts",
|
|
10
7
|
"repository": {
|
|
@@ -14,40 +11,62 @@
|
|
|
14
11
|
"author": "Aslak Hellesøy",
|
|
15
12
|
"license": "MIT",
|
|
16
13
|
"scripts": {
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
14
|
+
"clean": "shx rm -rf dist",
|
|
15
|
+
"build:tsc": "tsc --build tsconfig.build.json",
|
|
16
|
+
"build:webpack": "webpack",
|
|
17
|
+
"build": "npm run clean && npm run build:tsc && npm run prepare && npm run build:webpack",
|
|
18
|
+
"prepare": "shx mkdir -p dist/src && shx cp src/*.scss dist/src && shx cp src/index.mustache.html dist/src",
|
|
19
|
+
"test": "mocha --exclude test/acceptance.ts",
|
|
20
|
+
"prepublishOnly": "npm run build",
|
|
21
|
+
"eslint:fix": "eslint --ext ts,tsx --max-warnings 0 --fix src test",
|
|
22
|
+
"eslint": "eslint --ext ts,tsx --max-warnings 0 src test",
|
|
23
|
+
"validate": "mocha test/acceptance.ts"
|
|
20
24
|
},
|
|
21
|
-
"
|
|
22
|
-
"@cucumber/messages": "
|
|
23
|
-
"commander": "8.3.0",
|
|
24
|
-
"source-map-support": "0.5.21"
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"@cucumber/messages": ">=17"
|
|
25
27
|
},
|
|
26
28
|
"devDependencies": {
|
|
27
|
-
"@babel/core": "7.
|
|
28
|
-
"@cucumber/
|
|
29
|
+
"@babel/core": "7.17.8",
|
|
30
|
+
"@cucumber/compatibility-kit": "^9.1.2",
|
|
31
|
+
"@cucumber/gherkin": "22.0.0",
|
|
32
|
+
"@cucumber/gherkin-streams": "^5.0.0",
|
|
29
33
|
"@cucumber/gherkin-utils": "^7.0.0",
|
|
30
|
-
"@cucumber/message-streams": "^
|
|
34
|
+
"@cucumber/message-streams": "^4.0.0",
|
|
35
|
+
"@cucumber/messages": "^17.1.1",
|
|
31
36
|
"@cucumber/query": "^11.0.0",
|
|
32
|
-
"@cucumber/react": "^19.
|
|
37
|
+
"@cucumber/react": "^19.2.0",
|
|
38
|
+
"@types/glob": "^7.2.0",
|
|
33
39
|
"@types/mocha": "9.1.0",
|
|
34
|
-
"@types/node": "16.11.
|
|
35
|
-
"@types/react": "17.0.
|
|
36
|
-
"@types/react-dom": "17.0.
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
40
|
+
"@types/node": "16.11.26",
|
|
41
|
+
"@types/react": "17.0.41",
|
|
42
|
+
"@types/react-dom": "17.0.14",
|
|
43
|
+
"@typescript-eslint/eslint-plugin": "^5.10.1",
|
|
44
|
+
"@typescript-eslint/parser": "^5.10.1",
|
|
45
|
+
"babel-loader": "8.2.4",
|
|
46
|
+
"css-loader": "6.7.1",
|
|
47
|
+
"eslint": "^8.7.0",
|
|
48
|
+
"eslint-config-prettier": "^8.3.0",
|
|
49
|
+
"eslint-plugin-import": "^2.25.4",
|
|
50
|
+
"eslint-plugin-node": "^11.1.0",
|
|
51
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
52
|
+
"eslint-plugin-react": "^7.28.0",
|
|
53
|
+
"eslint-plugin-react-hooks": "^4.3.0",
|
|
54
|
+
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
55
|
+
"glob": "^7.2.0",
|
|
56
|
+
"mini-css-extract-plugin": "2.6.0",
|
|
57
|
+
"mocha": "9.2.2",
|
|
58
|
+
"prettier": "^2.5.1",
|
|
42
59
|
"puppeteer": "^13.1.2",
|
|
43
60
|
"react": "17.0.2",
|
|
44
61
|
"react-dom": "17.0.2",
|
|
45
|
-
"sass": "1.49.
|
|
46
|
-
"sass-loader": "12.
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
62
|
+
"sass": "1.49.9",
|
|
63
|
+
"sass-loader": "12.6.0",
|
|
64
|
+
"shx": "^0.3.4",
|
|
65
|
+
"source-map-support": "0.5.21",
|
|
66
|
+
"ts-loader": "9.2.8",
|
|
67
|
+
"ts-node": "10.7.0",
|
|
68
|
+
"typescript": "4.6.2",
|
|
69
|
+
"webpack": "5.70.0",
|
|
51
70
|
"webpack-cli": "4.9.2"
|
|
52
71
|
},
|
|
53
72
|
"bugs": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import { Transform, TransformCallback } from 'stream';
|
|
3
2
|
import * as messages from '@cucumber/messages';
|
|
3
|
+
import { Transform, TransformCallback } from 'stream';
|
|
4
4
|
export default class CucumberHtmlStream extends Transform {
|
|
5
5
|
private readonly cssPath;
|
|
6
6
|
private readonly jsPath;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CucumberHtmlStream.d.ts","sourceRoot":"","sources":["../../src/CucumberHtmlStream.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"CucumberHtmlStream.d.ts","sourceRoot":"","sources":["../../src/CucumberHtmlStream.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,QAAQ,MAAM,oBAAoB,CAAA;AAE9C,OAAO,EAAY,SAAS,EAAE,iBAAiB,EAAE,MAAM,QAAQ,CAAA;AAE/D,MAAM,CAAC,OAAO,OAAO,kBAAmB,SAAQ,SAAS;IAUrD,OAAO,CAAC,QAAQ,CAAC,OAAO;IACxB,OAAO,CAAC,QAAQ,CAAC,MAAM;IAVzB,OAAO,CAAC,QAAQ,CAAsB;IACtC,OAAO,CAAC,iBAAiB,CAAQ;IACjC,OAAO,CAAC,kBAAkB,CAAQ;IAClC,OAAO,CAAC,mBAAmB,CAAQ;IACnC;;;OAGG;gBAEgB,OAAO,EAAE,MAAM,EACf,MAAM,EAAE,MAAM;IAK1B,UAAU,CACf,QAAQ,EAAE,QAAQ,CAAC,QAAQ,EAC3B,QAAQ,EAAE,MAAM,EAChB,QAAQ,EAAE,iBAAiB,GAC1B,IAAI;IAYA,MAAM,CAAC,QAAQ,EAAE,iBAAiB,GAAG,IAAI;IAIhD,OAAO,CAAC,mCAAmC;IAiB3C,OAAO,CAAC,gBAAgB;IAaxB,OAAO,CAAC,SAAS;IAOjB,OAAO,CAAC,oBAAoB;IAiB5B,OAAO,CAAC,YAAY;IAiBpB,OAAO,CAAC,YAAY;CAQrB"}
|
|
@@ -77,6 +77,8 @@ class CucumberHtmlStream extends stream_1.Transform {
|
|
|
77
77
|
this.readTemplate((err, template) => {
|
|
78
78
|
if (err)
|
|
79
79
|
return callback(err);
|
|
80
|
+
if (!template)
|
|
81
|
+
return callback(new Error('template is required if error is missing'));
|
|
80
82
|
const beginIndex = begin == null ? 0 : template.indexOf(begin) + begin.length;
|
|
81
83
|
const endIndex = end == null ? template.length : template.indexOf(end);
|
|
82
84
|
this.push(template.substring(beginIndex, endIndex));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CucumberHtmlStream.js","sourceRoot":"","sources":["../../src/CucumberHtmlStream.ts"],"names":[],"mappings":";;;;;
|
|
1
|
+
{"version":3,"file":"CucumberHtmlStream.js","sourceRoot":"","sources":["../../src/CucumberHtmlStream.ts"],"names":[],"mappings":";;;;;AACA,4CAAmB;AACnB,mCAA+D;AAE/D,MAAqB,kBAAmB,SAAQ,kBAAS;IAKvD;;;OAGG;IACH,YACmB,OAAe,EACf,MAAc;QAE/B,KAAK,CAAC,EAAE,UAAU,EAAE,IAAI,EAAE,CAAC,CAAA;QAHV,YAAO,GAAP,OAAO,CAAQ;QACf,WAAM,GAAN,MAAM,CAAQ;QAVzB,aAAQ,GAAkB,IAAI,CAAA;QAC9B,sBAAiB,GAAG,KAAK,CAAA;QACzB,uBAAkB,GAAG,KAAK,CAAA;QAC1B,wBAAmB,GAAG,KAAK,CAAA;IAUnC,CAAC;IAEM,UAAU,CACf,QAA2B,EAC3B,QAAgB,EAChB,QAA2B;QAE3B,IAAI,IAAI,CAAC,kBAAkB,EAAE;YAC3B,OAAO,QAAQ,CAAC,IAAI,KAAK,CAAC,eAAe,CAAC,CAAC,CAAA;SAC5C;QAED,IAAI,CAAC,mCAAmC,CAAC,CAAC,GAAG,EAAE,EAAE;YAC/C,IAAI,GAAG;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAA;YAC7B,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAA;YAC3B,QAAQ,EAAE,CAAA;QACZ,CAAC,CAAC,CAAA;IACJ,CAAC;IAEM,MAAM,CAAC,QAA2B;QACvC,IAAI,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAA;IACjC,CAAC;IAEO,mCAAmC,CAAC,QAA2B;QACrE,IAAI,IAAI,CAAC,iBAAiB,EAAE;YAC1B,OAAO,QAAQ,EAAE,CAAA;SAClB;QACD,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAA;QAC7B,IAAI,CAAC,oBAAoB,CAAC,IAAI,EAAE,SAAS,EAAE,CAAC,GAAG,EAAE,EAAE;YACjD,IAAI,GAAG;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAA;YAC7B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,GAAG,EAAE,EAAE;gBACnC,IAAI,GAAG;oBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAA;gBAC7B,IAAI,CAAC,oBAAoB,CAAC,SAAS,EAAE,cAAc,EAAE,CAAC,GAAG,EAAE,EAAE;oBAC3D,IAAI,GAAG;wBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAA;oBAC7B,QAAQ,EAAE,CAAA;gBACZ,CAAC,CAAC,CAAA;YACJ,CAAC,CAAC,CAAA;QACJ,CAAC,CAAC,CAAA;IACJ,CAAC;IAEO,gBAAgB,CAAC,QAA2B;QAClD,IAAI,CAAC,mCAAmC,CAAC,CAAC,GAAG,EAAE,EAAE;YAC/C,IAAI,GAAG;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAA;YAC7B,IAAI,CAAC,oBAAoB,CAAC,cAAc,EAAE,YAAY,EAAE,CAAC,GAAG,EAAE,EAAE;gBAC9D,IAAI,GAAG;oBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAA;gBAC7B,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,EAAE;oBAClC,IAAI,GAAG;wBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAA;oBAC7B,IAAI,CAAC,oBAAoB,CAAC,YAAY,EAAE,IAAI,EAAE,QAAQ,CAAC,CAAA;gBACzD,CAAC,CAAC,CAAA;YACJ,CAAC,CAAC,CAAA;QACJ,CAAC,CAAC,CAAA;IACJ,CAAC;IAEO,SAAS,CAAC,IAAY,EAAE,QAAwC;QACtE,MAAM,SAAS,GAAa,YAAE,CAAC,gBAAgB,CAAC,IAAI,EAAE,EAAE,QAAQ,EAAE,OAAO,EAAE,CAAC,CAAA;QAC5E,SAAS,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAA;QACjD,SAAS,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAA;QAC7C,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAA;IAC/B,CAAC;IAEO,oBAAoB,CAC1B,KAAoB,EACpB,GAAkB,EAClB,QAAsC;QAEtC,IAAI,CAAC,YAAY,CAAC,CAAC,GAAG,EAAE,QAAQ,EAAE,EAAE;YAClC,IAAI,GAAG;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAA;YAC7B,IAAI,CAAC,QAAQ;gBACX,OAAO,QAAQ,CAAC,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC,CAAA;YACxE,MAAM,UAAU,GACd,KAAK,IAAI,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,MAAM,CAAA;YAC5D,MAAM,QAAQ,GAAG,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,CAAA;YACtE,IAAI,CAAC,IAAI,CAAC,QAAQ,CAAC,SAAS,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,CAAA;YACnD,QAAQ,EAAE,CAAA;QACZ,CAAC,CAAC,CAAA;IACJ,CAAC;IAEO,YAAY,CAClB,QAAuD;QAEvD,IAAI,IAAI,CAAC,QAAQ,KAAK,IAAI,EAAE;YAC1B,OAAO,QAAQ,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,CAAA;SACrC;QACD,YAAE,CAAC,QAAQ,CACT,SAAS,GAAG,sBAAsB,EAClC,EAAE,QAAQ,EAAE,OAAO,EAAE,EACrB,CAAC,GAAG,EAAE,QAAQ,EAAE,EAAE;YAChB,IAAI,GAAG;gBAAE,OAAO,QAAQ,CAAC,GAAG,CAAC,CAAA;YAC7B,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAA;YACxB,OAAO,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAA;QACjC,CAAC,CACF,CAAA;IACH,CAAC;IAEO,YAAY,CAAC,QAA2B;QAC9C,IAAI,CAAC,IAAI,CAAC,mBAAmB,EAAE;YAC7B,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAA;SAChC;aAAM;YACL,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAA;SACf;QACD,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,CAAA;IACrC,CAAC;CACF;AAnHD,qCAmHC"}
|
package/dist/src/main.d.ts
CHANGED
package/dist/src/main.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../src/main.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,QAAQ,MAAM,oBAAoB,CAAA;
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../src/main.tsx"],"names":[],"mappings":"AAAA,OAAO,eAAe,CAAA;AAEtB,OAAO,KAAK,QAAQ,MAAM,oBAAoB,CAAA;AAQ9C,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,MAAM;QACd,iBAAiB,EAAE,QAAQ,CAAC,QAAQ,EAAE,CAAA;KACvC;CACF"}
|
package/dist/src/main.js
CHANGED
|
@@ -3,10 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
require("./styles.scss");
|
|
6
7
|
const react_1 = require("@cucumber/react");
|
|
7
8
|
const react_2 = __importDefault(require("react"));
|
|
8
9
|
const react_dom_1 = __importDefault(require("react-dom"));
|
|
9
|
-
require("./styles.scss");
|
|
10
10
|
const { CucumberReact } = react_1.components;
|
|
11
11
|
const { FilteredResults, EnvelopesWrapper, SearchWrapper } = react_1.components.app;
|
|
12
12
|
const app = (react_2.default.createElement(CucumberReact, { theme: "auto" },
|
package/dist/src/main.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.js","sourceRoot":"","sources":["../../src/main.tsx"],"names":[],"mappings":";;;;;
|
|
1
|
+
{"version":3,"file":"main.js","sourceRoot":"","sources":["../../src/main.tsx"],"names":[],"mappings":";;;;;AAAA,yBAAsB;AAGtB,2CAAiE;AACjE,kDAAyB;AACzB,0DAAgC;AAEhC,MAAM,EAAE,aAAa,EAAE,GAAG,kBAAU,CAAA;AACpC,MAAM,EAAE,eAAe,EAAE,gBAAgB,EAAE,aAAa,EAAE,GAAG,kBAAU,CAAC,GAAG,CAAA;AAQ3E,MAAM,GAAG,GAAG,CACV,8BAAC,aAAa,IAAC,KAAK,EAAC,MAAM;IACzB,8BAAC,gBAAgB,IAAC,SAAS,EAAE,MAAM,CAAC,iBAAiB;QACnD,8BAAC,aAAa,oBAAK,IAAA,2BAAmB,GAAE;YACtC,8BAAC,eAAe,IAAC,SAAS,EAAC,gBAAgB,GAAG,CAChC,CACC,CACL,CACjB,CAAA;AAED,mBAAQ,CAAC,MAAM,CAAC,GAAG,EAAE,QAAQ,CAAC,cAAc,CAAC,SAAS,CAAC,CAAC,CAAA"}
|
|
@@ -12,15 +12,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
12
12
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
13
|
};
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
const CucumberHtmlStream_1 = __importDefault(require("../src/CucumberHtmlStream"));
|
|
16
|
-
const stream_1 = require("stream");
|
|
17
15
|
const assert_1 = __importDefault(require("assert"));
|
|
16
|
+
const stream_1 = require("stream");
|
|
17
|
+
const CucumberHtmlStream_1 = __importDefault(require("../src/CucumberHtmlStream"));
|
|
18
18
|
function renderAsHtml(...envelopes) {
|
|
19
19
|
return __awaiter(this, void 0, void 0, function* () {
|
|
20
20
|
return new Promise((resolve, reject) => {
|
|
21
21
|
let html = '';
|
|
22
22
|
const sink = new stream_1.Writable({
|
|
23
|
-
write(chunk,
|
|
23
|
+
write(chunk, _, callback) {
|
|
24
24
|
html += chunk;
|
|
25
25
|
callback();
|
|
26
26
|
},
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CucumberHtmlStreamTest.js","sourceRoot":"","sources":["../../test/CucumberHtmlStreamTest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AACA,
|
|
1
|
+
{"version":3,"file":"CucumberHtmlStreamTest.js","sourceRoot":"","sources":["../../test/CucumberHtmlStreamTest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AACA,oDAA2B;AAC3B,mCAAiC;AAEjC,mFAA0D;AAE1D,SAAe,YAAY,CACzB,GAAG,SAA8B;;QAEjC,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YACrC,IAAI,IAAI,GAAG,EAAE,CAAA;YACb,MAAM,IAAI,GAAa,IAAI,iBAAQ,CAAC;gBAClC,KAAK,CACH,KAAa,EACb,CAAS,EACT,QAAwC;oBAExC,IAAI,IAAI,KAAK,CAAA;oBACb,QAAQ,EAAE,CAAA;gBACZ,CAAC;aACF,CAAC,CAAA;YACF,IAAI,CAAC,EAAE,CAAC,QAAQ,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAA;YACtC,MAAM,kBAAkB,GAAG,IAAI,4BAAkB,CAC/C,GAAG,SAAS,YAAY,EACxB,GAAG,SAAS,WAAW,CACxB,CAAA;YACD,kBAAkB,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC,CAAA;YACtC,kBAAkB,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;YAE7B,KAAK,MAAM,QAAQ,IAAI,SAAS,EAAE;gBAChC,kBAAkB,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAA;aACnC;YACD,kBAAkB,CAAC,GAAG,EAAE,CAAA;QAC1B,CAAC,CAAC,CAAA;IACJ,CAAC;CAAA;AAED,QAAQ,CAAC,oBAAoB,EAAE,GAAG,EAAE;IAClC,EAAE,CAAC,8BAA8B,EAAE,GAAS,EAAE;QAC5C,MAAM,IAAI,GAAG,MAAM,YAAY,EAAE,CAAA;QACjC,IAAA,gBAAM,EAAC,IAAI,CAAC,OAAO,CAAC,+BAA+B,CAAC,IAAI,CAAC,CAAC,CAAA;IAC5D,CAAC,CAAA,CAAC,CAAA;IAEF,EAAE,CAAC,4BAA4B,EAAE,GAAS,EAAE;QAC1C,MAAM,EAAE,GAAsB;YAC5B,cAAc,EAAE;gBACd,SAAS,EAAE,EAAE,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE;aACpC;SACF,CAAA;QACD,MAAM,IAAI,GAAG,MAAM,YAAY,CAAC,EAAE,CAAC,CAAA;QACnC,IAAA,gBAAM,EACJ,IAAI,CAAC,OAAO,CAAC,+BAA+B,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC,GAAG,CAAC,IAAI,CAAC,CACxE,CAAA;IACH,CAAC,CAAA,CAAC,CAAA;IAEF,EAAE,CAAC,6BAA6B,EAAE,GAAS,EAAE;QAC3C,MAAM,EAAE,GAAsB;YAC5B,cAAc,EAAE;gBACd,SAAS,EAAE,EAAE,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE;aACpC;SACF,CAAA;QACD,MAAM,EAAE,GAAsB;YAC5B,eAAe,EAAE;gBACf,SAAS,EAAE,EAAE,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE;gBACnC,OAAO,EAAE,IAAI;aACd;SACF,CAAA;QACD,MAAM,IAAI,GAAG,MAAM,YAAY,CAAC,EAAE,EAAE,EAAE,CAAC,CAAA;QACvC,IAAA,gBAAM,EACJ,IAAI,CAAC,OAAO,CACV,+BAA+B,IAAI,CAAC,SAAS,CAAC,EAAE,CAAC,IAAI,IAAI,CAAC,SAAS,CACjE,EAAE,CACH,GAAG,CACL,IAAI,CAAC,CACP,CAAA;IACH,CAAC,CAAA,CAAC,CAAA;AACJ,CAAC,CAAC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"acceptance.d.ts","sourceRoot":"","sources":["../../test/acceptance.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
const message_streams_1 = require("@cucumber/message-streams");
|
|
16
|
+
const assert_1 = __importDefault(require("assert"));
|
|
17
|
+
const fs_1 = __importDefault(require("fs"));
|
|
18
|
+
const glob_1 = __importDefault(require("glob"));
|
|
19
|
+
const path_1 = __importDefault(require("path"));
|
|
20
|
+
const puppeteer_1 = __importDefault(require("puppeteer"));
|
|
21
|
+
const stream_1 = require("stream");
|
|
22
|
+
const CucumberHtmlStream_1 = __importDefault(require("../src/CucumberHtmlStream"));
|
|
23
|
+
function canRenderHtml(html) {
|
|
24
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
25
|
+
const browser = yield puppeteer_1.default.launch({
|
|
26
|
+
headless: true,
|
|
27
|
+
args: ['--no-sandbox'],
|
|
28
|
+
});
|
|
29
|
+
const page = yield browser.newPage();
|
|
30
|
+
yield page.setContent(html);
|
|
31
|
+
const dynamicHTML = yield page.evaluate(() => {
|
|
32
|
+
const content = document.querySelector('[data-testid="cucumber-react"]');
|
|
33
|
+
return content && content.innerHTML;
|
|
34
|
+
});
|
|
35
|
+
yield browser.close();
|
|
36
|
+
if (!dynamicHTML) {
|
|
37
|
+
return false;
|
|
38
|
+
}
|
|
39
|
+
return true;
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
describe('html-formatter', () => {
|
|
43
|
+
const files = glob_1.default.sync(`./node_modules/@cucumber/compatibility-kit/features/**/*.ndjson`);
|
|
44
|
+
for (const ndjson of files) {
|
|
45
|
+
it(`can render ${path_1.default.basename(ndjson, '.ndjson')}`, () => __awaiter(void 0, void 0, void 0, function* () {
|
|
46
|
+
const ndjsonData = fs_1.default.createReadStream(ndjson, { encoding: 'utf-8' });
|
|
47
|
+
const toMessageStream = new message_streams_1.NdjsonToMessageStream();
|
|
48
|
+
const htmlData = yield new Promise((resolve, reject) => {
|
|
49
|
+
const chunks = [];
|
|
50
|
+
const out = new stream_1.PassThrough()
|
|
51
|
+
.on('data', (chunk) => chunks.push(Buffer.from(chunk)))
|
|
52
|
+
.on('end', () => resolve(Buffer.concat(chunks).toString()));
|
|
53
|
+
(0, stream_1.pipeline)(ndjsonData, toMessageStream, new CucumberHtmlStream_1.default(__dirname + '/../dist/main.css', __dirname + '/../dist/main.js'), out, (err) => {
|
|
54
|
+
if (err) {
|
|
55
|
+
reject(err);
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
});
|
|
59
|
+
assert_1.default.ok(yield canRenderHtml(htmlData.toString()));
|
|
60
|
+
}));
|
|
61
|
+
}
|
|
62
|
+
});
|
|
63
|
+
//# sourceMappingURL=acceptance.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"acceptance.js","sourceRoot":"","sources":["../../test/acceptance.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAAA,+DAAiE;AACjE,oDAA2B;AAC3B,4CAAmB;AACnB,gDAAuB;AACvB,gDAAuB;AACvB,0DAAiC;AACjC,mCAA8C;AAE9C,mFAA0D;AAE1D,SAAe,aAAa,CAAC,IAAY;;QACvC,MAAM,OAAO,GAAG,MAAM,mBAAS,CAAC,MAAM,CAAC;YACrC,QAAQ,EAAE,IAAI;YACd,IAAI,EAAE,CAAC,cAAc,CAAC;SACvB,CAAC,CAAA;QACF,MAAM,IAAI,GAAG,MAAM,OAAO,CAAC,OAAO,EAAE,CAAA;QACpC,MAAM,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,CAAA;QAC3B,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,GAAG,EAAE;YAC3C,MAAM,OAAO,GAAG,QAAQ,CAAC,aAAa,CAAC,gCAAgC,CAAC,CAAA;YACxE,OAAO,OAAO,IAAI,OAAO,CAAC,SAAS,CAAA;QACrC,CAAC,CAAC,CAAA;QACF,MAAM,OAAO,CAAC,KAAK,EAAE,CAAA;QAErB,IAAI,CAAC,WAAW,EAAE;YAChB,OAAO,KAAK,CAAA;SACb;QAED,OAAO,IAAI,CAAA;IACb,CAAC;CAAA;AAED,QAAQ,CAAC,gBAAgB,EAAE,GAAG,EAAE;IAC9B,MAAM,KAAK,GAAG,cAAI,CAAC,IAAI,CACrB,iEAAiE,CAClE,CAAA;IACD,KAAK,MAAM,MAAM,IAAI,KAAK,EAAE;QAC1B,EAAE,CAAC,cAAc,cAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,SAAS,CAAC,EAAE,EAAE,GAAS,EAAE;YAC9D,MAAM,UAAU,GAAG,YAAE,CAAC,gBAAgB,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,OAAO,EAAE,CAAC,CAAA;YACrE,MAAM,eAAe,GAAG,IAAI,uCAAqB,EAAE,CAAA;YACnD,MAAM,QAAQ,GAAG,MAAM,IAAI,OAAO,CAAS,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;gBAC7D,MAAM,MAAM,GAAa,EAAE,CAAA;gBAC3B,MAAM,GAAG,GAAG,IAAI,oBAAW,EAAE;qBAC1B,EAAE,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC;qBACtD,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAA;gBAC7D,IAAA,iBAAQ,EACN,UAAU,EACV,eAAe,EACf,IAAI,4BAAkB,CACpB,SAAS,GAAG,mBAAmB,EAC/B,SAAS,GAAG,kBAAkB,CAC/B,EACD,GAAG,EACH,CAAC,GAAU,EAAE,EAAE;oBACb,IAAI,GAAG,EAAE;wBACP,MAAM,CAAC,GAAG,CAAC,CAAA;qBACZ;gBACH,CAAC,CACF,CAAA;YACH,CAAC,CAAC,CAAA;YACF,gBAAM,CAAC,EAAE,CAAC,MAAM,aAAa,CAAC,QAAQ,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAA;QACrD,CAAC,CAAA,CAAC,CAAA;KACH;AACH,CAAC,CAAC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/reflect-metadata/index.d.ts","../node_modules/@cucumber/messages/dist/src/messages.d.ts","../node_modules/@cucumber/messages/dist/src/TimeConversion.d.ts","../node_modules/@cucumber/messages/dist/src/IdGenerator.d.ts","../node_modules/@cucumber/messages/dist/package.json","../node_modules/@cucumber/messages/dist/src/parseEnvelope.d.ts","../node_modules/@cucumber/messages/dist/src/getWorstTestStepResult.d.ts","../node_modules/@cucumber/messages/dist/src/index.d.ts","../src/CucumberHtmlStream.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@cucumber/message-streams/dist/src/MessageToNdjsonStream.d.ts","../node_modules/@cucumber/message-streams/dist/src/NdjsonToMessageStream.d.ts","../node_modules/@cucumber/message-streams/dist/src/index.d.ts","../node_modules/commander/typings/index.d.ts","../package.json","../src/cli-main.ts","../node_modules/@cucumber/query/dist/src/Query.d.ts","../node_modules/@cucumber/query/dist/src/index.d.ts","../node_modules/@types/react/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/prop-types/index.d.ts","../node_modules/@types/scheduler/tracing.d.ts","../node_modules/@types/react/index.d.ts","../node_modules/@cucumber/react/dist/src/CucumberQueryContext.d.ts","../node_modules/@cucumber/react/dist/src/EnvelopesQueryContext.d.ts","../node_modules/@cucumber/gherkin-utils/dist/src/GherkinDocumentHandlers.d.ts","../node_modules/@cucumber/gherkin-utils/dist/src/walkGherkinDocument.d.ts","../node_modules/@cucumber/gherkin-utils/dist/src/pretty.d.ts","../node_modules/@cucumber/gherkin-utils/dist/src/Query.d.ts","../node_modules/@cucumber/gherkin-utils/dist/src/GherkinDocumentWalker.d.ts","../node_modules/@cucumber/gherkin-utils/dist/src/index.d.ts","../node_modules/@cucumber/react/dist/src/filter/filterByStatus.d.ts","../node_modules/@cucumber/react/dist/src/GherkinQueryContext.d.ts","../node_modules/@cucumber/react/dist/src/SearchQueryContext.d.ts","../node_modules/@cucumber/react/dist/src/components/app/CICommitLink.d.ts","../node_modules/@cucumber/react/dist/src/components/app/EnvelopesWrapper.d.ts","../node_modules/@cucumber/react/dist/src/components/app/ExecutionSummary.d.ts","../node_modules/@cucumber/react/dist/src/components/app/FilteredResults.d.ts","../node_modules/@cucumber/react/dist/src/components/app/GherkinDocumentList.d.ts","../node_modules/@cucumber/react/dist/src/components/app/HighLight.d.ts","../node_modules/@cucumber/react/dist/src/components/app/NoMatchResult.d.ts","../node_modules/@cucumber/react/dist/src/components/app/QueriesWrapper.d.ts","../node_modules/@cucumber/react/dist/src/components/app/SearchBar.d.ts","../node_modules/@cucumber/react/dist/src/components/app/SearchWrapper.d.ts","../node_modules/@cucumber/react/dist/src/components/app/StatusesSummary.d.ts","../node_modules/@cucumber/react/dist/src/components/app/index.d.ts","../node_modules/@cucumber/react/dist/src/components/customise/customRendering.d.ts","../node_modules/@cucumber/react/dist/src/components/customise/theming.d.ts","../node_modules/@cucumber/react/dist/src/components/customise/index.d.ts","../node_modules/@cucumber/react/dist/src/components/CucumberReact.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Anchor.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Attachment.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Background.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Children.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/DataTable.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Description.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/DocString.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/ErrorMessage.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Examples.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/ExamplesTable.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Feature.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/GherkinDocument.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/GherkinStep.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/HookList.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/HookStep.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Keyword.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/MDG.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Parameter.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Rule.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Scenario.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/StatusIcon.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/StepItem.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/StepList.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Tags.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Title.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/index.d.ts","../node_modules/@cucumber/react/dist/src/components/index.d.ts","../node_modules/@cucumber/react/dist/src/hooks/useQueries.d.ts","../node_modules/@cucumber/react/dist/src/hooks/useSearch.d.ts","../node_modules/@cucumber/react/dist/src/hooks/index.d.ts","../node_modules/@cucumber/react/dist/src/index.d.ts","../node_modules/@types/react-dom/index.d.ts","../src/main.tsx","../test/CucumberHtmlStreamTest.ts","../node_modules/@types/elasticlunr/index.d.ts","../node_modules/@types/eslint/helpers.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/eslint/index.d.ts","../node_modules/@types/eslint-scope/index.d.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/glob/index.d.ts","../node_modules/@types/unist/index.d.ts","../node_modules/@types/hast/index.d.ts","../node_modules/@types/mdast/index.d.ts","../node_modules/@types/minimist/index.d.ts","../node_modules/@types/mocha/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/parse5/index.d.ts","../node_modules/@types/scheduler/index.d.ts","../node_modules/@types/uuid/index.d.ts","../node_modules/@types/yauzl/index.d.ts","../../../node_modules/@types/chai/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/@types/sinon/index.d.ts","../../../node_modules/@types/sinon-chai/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/stream-buffers/index.d.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"abba1071bfd89e55e88a054b0c851ea3e8a494c340d0f3fab19eb18f6afb0c9e","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},{"version":"8d6d51a5118d000ed3bfe6e1dd1335bebfff3fef23cd2af2f84a24d30f90cc90","affectsGlobalScope":true},"a12cffdfb523dff8bc2aa6284f0fb9830c7f4237a007a2101f93f5488361a7de","fd5f3f30e38d58e2f494e64fa610c03d9935d8a78ae79d1d8d06e76d983138fa","67c50537d02e09de9593718e820326dcc559b93fd910d976a65b0a8edc1b400a","9fac2b0b6a091f55fed5d1ee637cfccf09266ea507cd0e1d09082956c41e3131","8bc721498a9c0716e8b39c8f292f390c3ffbd8a34ab25f3328af35a840bae86b","4b407d2f10d3fd33ef5bb087a5de45e6b5db37439a52758005049fdad53c327e","7ccb0c2d2bb0b7ffc748c5ba2f81da00c5d6fe5942ca06c37d78014646b580cd","4cc7dd633b5596152491e31d812afbfa26290f12aa0eb1f3d5662c84f4700573","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","196fee5541bfd59699dab615fee2ae7a6f5fe0a6337bcbbfd656ebf1ae329a63","160cc6e3d06938535bc887754afe5798c22d81ce83a9792ebfe2371a70f2ffc2","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"eecd493fc62c4dba3d988e2d7dff63299bf12ab49f5c9021dfef8dcc1ff2089e","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","945a841f9a591197154c85386bc5a1467d42d325104bb36db51bc566bbb240be","10c39ce1df102994b47d4bc0c71aa9a6aea76f4651a5ec51914431f50bc883a1",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a7971f9fb2a32ec7788ec6cda9d7a33c02023dfe9a62db2030ad1359649d8050","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1503a452a67127e5c2da794d1c7c44344d5038373aae16c9b03ac964db159edd","cb004a5ae7f048a69e545b617891f0799a0eb2ada9043ef36873082910ad8f06","c71a70ff86f6239635c98a803ee05fdd80575d4453c6d9361b67c2f899723688","5cf277d7a0426b64204ca177668a198465d132e4c1a1faadff806fe7c661e2c3","051ae0b0bda811703875e6f2e466b9344cfe320b39087676327dc0c109f26d32","ce6de726c5e0f62fc7230de479e16936a6c81f0af2e1f2689f4a6a644bd23ced","019fa1a51288930f696437ba8f56b7e86d4c37ce9886971eaf1821c3cb138031","3485116e90bdf202373cb67d981490e262ddd2643f4c93d26ed6009e973d0b5e","6c25aa74fa2002408ab646129913b95b47420e43c4429457f5ceb6be3b83df44",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"1bc82f5b3bb93df76d19730c84467b0b346187198537135d63a672956f323720","affectsGlobalScope":true},"25e664b405871d042d0b7cc8245870b911252305449f854524a7bc707153f12e","a6fbec18952de1f5080dbff80837564e46015a3741dcf7ed9399e73b744f9b9d","9c22218f2726cd7a72fa2647cae01a6b43a676f49d917d7f3fa50fe9da1c5c6a","f2f49f5a91f31e2badd42d6217425dbf612873134f4a9594dd511ee5f081107c","a83a68fd067b62140483ddb7818cd35e8c1f58abcba2cca8f64cf92483bd2594","1b7a793d08d6f35bc07a409255c67c684e4704d21607ecfec8a5e53f0b0ed6bd","5a473fb6b7e3af6fe99413d758c4af1345986bec1ad3412d7da10770234a6d3f","66042dcb46ccc8d4caf1a1d713365992d28335b66e62c07913db44e296e67502","285de578d443bf93e8318d64fc542a8e55f4c8ca918c717932112fb867cd8cef","0b2ffaa32de7b8324f8b3930b651cf8f75337e4d6956df147f08c52e5a3930b3","3fb0bb35d090d69025f0b48e69644019c48e64f75935775ef3f4d960d4c45939","eb3420db01224f68cb45cb2d992893a9a7c208b650fc8164040714fc3468fd8f","b5d188062597496857e89f8ca098b4c0b02aae08ad095fd0d15fadcfb1ebb520","d9a4d66ddc7b6f09d7e734643a1aab4f277cdef03a0cf10c730818074d0ab834","1d6f29afacc19d5e403f7f86a56d8100dfb63a6905f62674ab4132c5a2b22cfe","3a7de785cee88be902303383ba11a932ae7ecc2b0741f00e0b7e0e0f644b6159","9e37ebd71a9d2cb1a7916f8c62a11fccc548108c5cef15b2efafe1ee000c6f12","fd14618ea5f816aacf158cecd4ae0fcd9356263fb4fa192ef34ca4ee357d8bf3","fc0c9b4e89dcdf76b8d00adbdd0d587b1eb7166349c5c98ae0d883668d0412c9","f2a3bf0b4a6a8b8c30e1d0aea48950b57148b2ae4c082e65a25faa2a55859ab9","349e1ccfa2227170af8cbcecf48c04fb9cc14bd6d7276fa955ca2cfb5595f52b","655f6ef9de7b4a70153dd6db24acaee36dffad737d55c25163af48450a72bdd9","48ffee9aa474c2f631975f9a79b2cafc2e4a22700f209e5730a867747b7edf39","79ee4d2cebda29ab066ed97657e66aa4521904aff4d242d24d1ea4005329b06b","2bb0e7d215c8ec7b37e5ba51b72b00f395ad9cb4c9624c05c105b50888ab9076","7ca4c70fccf4693f54e7e4d0328d97b76b777969d76fe46d70f2a8f917e16462","f049bb85d52e20094e0f93ff587cf6de627d36d15c3eb42f8959d74bbc26de8f","92fe7c925107a898600e75ff203e0e33e122577b031ce70888afbc346a75ae8b","f3c269c6db00e83274f6c0208b4cf9a34a512321bc36c79dd3ab6e6f279aa81b","cba2c177f4e48a92ab44df12077b238f1b756fa6251dfdddf624ebd5addf37b6","97c7b000b3f7bcc3a0bd7ec6cc8d5051476785d107014305c8e8b4c2b0d6d688","5dac7a9094f1d7d9b3bbfcb94cd8c68c0d96b49be4f2bfa63d85f84cd5382892","43033d7faf2c365074fda331a4ee5b3cf915c2baf1478ac6873242451ffd6853","e3268db1cf846c087d24b83b8236f32ee0abca9824c30aa6960dc22fc7f34551","4aa2890026ab0029ff32696161d83f6a27b6924b928f029e43481cfd6733ddfd","9cad55ebd56c492692ffaf29855fc345d32c9fef1e809b48c0b90d529408daac","00c3196d3d2382124bb83f7b09d882c0007b94676b7525e6cf27ef5b9e8c5057","37073c836f2ea53c64b1b7ccd8615c9927622a3d1bdb0716a1c51199df38b935","b55c0b09e2edfab0d63206bed3fad37fa3f3ce49a6663970c92a2e5fe8b7c392","c2a2d97629fe3f55d85a7101ae19e5d07ed713d83d735a316a44d13ca6b8c9d5","41107cfdee6bfe339d6b3680266755a20052210d78870261d019f0a8d7e598d0","422d3dc6020398222b324a3e381d3bbc9bb4f4ceb7d3f3430ea7f89257e8ab51","2bd2e3e79c74bd7eb1a2dd2caa09e145a0e0a428bcdcbe5f1110f847913f804e","0718d9bf0d5878b6e916f041932e3c96d74b42c649bf7b0eebcfe2990e9f02f3","fdc0875e024caed6b4c827df383eceb920a236d391174aa9997c4bddb130a85b","2e773e0d88eafc7a8e33b00d6f90f4293ef7ba87a5224263709c763ce14e68d7","4629bf6d7a875ba35bd9693636dbf7b8beb51bcb31d040c836aa65e59ce1af5e","c7de1dca8ca72ef28e13ec2ba5f93a7baf99f4fa94b466ce1a863a189c5c6320","d53d0dd0734479bd3aa1e36e9895e030b11edf1d2ca58080f270dcdce1b6833c","4a18a39ed4ed4244e1f3c6e5c9c9176713cc808ba07c03285ce6f4e71e463384","55b4875327ad716cc32caa152324e1138f358f7de5a97f249a69d3fd90a54b1b","1143f790997f7af850ed6649e061d39571d30e99b734b28c49ef27eb0190516b","a616ce95910fea53a469aaeef5134d4563d8a81bfe595c1a26fe6a7f68aa3106","b517efc8c5dda407451dd9d09008420f992472f87b3811ae73fc8a1f27848607","cb597b3317793b86009834f3fac391f396cd7b4731de6d774b647ea2283c704e","fb25a93c6fe6a97b70773c8f2d59664beecfce1dfae1617653f0cbbdf611427d","e8f36304015de598fe92c733892017746d0b60c86e280201c0f63683c74f7af6","607e5eff3628141d3a5728c0bcf2ab954504b450e5afbe67b3b9ec233d3b613d","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6",{"version":"91e8f3d39366a3299e3b86e465e0b05e6af9fac0fda8de159b34c175caa61ca6","affectsGlobalScope":true},"d5512fd5dc5c51b6724d1b61351ae7b84cf572aa598a2f1d66c9436dcb3b9f1f","a217d7ae13d0b33efed42acef8421f7f885bb113c8613fc0ebd64cb59bf1b887",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05",{"version":"30bf01dd2e284098445264c8d71c608890cc11c142f36d0193aa655bdc0a40cb","affectsGlobalScope":true},"6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","b2d70a269840a9528db473ac7565442434333a05c1f66801a7a672e82beb903e",{"version":"c8747693e5872ad5ef3aa016731a06915e1c34dae987829d9aa5bd40c7a2c54b","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","550650516d34048712520ffb1fce4a02f2d837761ee45c7d9868a7a35e7b0343","9d92b037978bb9525bc4b673ebddd443277542e010c0aef019c03a170ccdaa73",{"version":"0fd3b5704bf037608646df5aa053fd06819ff69302ff6ada9736c300f79df852","affectsGlobalScope":true},"b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","229b8c23448b98db8507667e46f54d20bd1e8425eaa8f3093bf9fecfbab862ec"],"options":{"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":1,"noImplicitAny":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strictNullChecks":false,"target":2},"fileIdsList":[[47,92],[92,115,116,117,118,119],[47,92,115],[47,81,92,99],[92,100,101],[92],[41,92],[41,42,43,44,45,46,92],[40,92],[92,106],[92,107,112],[47,92,112],[92,112,120],[92,112,138],[92,112],[92,107,112,114,120],[92,112,123],[92,124,125,126,127,128,129,130,131,132,133,134],[92,136,137],[92,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[92,135,138,139,165],[47,92,107,120],[92,167,168],[92,107,114,120],[92,123],[92,113,114,121,122,123,166,169],[92,177,178],[92,175,176,177],[64,65,92,99,180],[92,182],[49,92],[52,92],[53,58,92],[54,64,65,72,81,91,92],[54,55,64,72,92],[56,92],[57,58,65,73,92],[58,81,88,92],[59,61,64,72,92],[60,92],[61,62,92],[63,64,92],[64,92],[64,65,66,81,91,92],[64,65,66,81,92],[67,72,81,91,92],[64,65,67,68,72,81,88,91,92],[67,69,81,88,91,92],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98],[64,70,92],[71,91,92],[61,64,72,81,92],[73,92],[74,92],[52,75,92],[76,90,92,96],[77,92],[78,92],[64,79,92],[79,80,92,94],[64,81,82,83,92],[81,83,92],[81,82,92],[84,92],[85,92],[64,86,87,92],[86,87,92],[58,72,88,92],[89,92],[72,90,92],[53,67,78,91,92],[58,92],[81,92,93],[92,94],[92,95],[53,58,64,66,75,81,91,92,94,96],[81,92,97],[92,108,109,110,111],[64,81,92,99],[47,65,81,92],[48,81,92,102,103,104],[47,92,112,170,171],[47,48,49,81,92],[92,192,195],[92,194],[81,92,99]],"referencedMap":[[115,1],[119,1],[118,1],[120,2],[117,1],[116,3],[100,4],[101,4],[102,5],[44,6],[43,6],[42,7],[46,7],[47,8],[41,9],[45,7],[106,1],[107,10],[113,11],[114,12],[122,13],[123,12],[139,14],[124,12],[125,12],[126,12],[127,15],[128,12],[129,15],[130,15],[131,16],[132,12],[133,17],[134,12],[135,18],[136,12],[138,19],[137,6],[140,14],[141,14],[142,14],[143,14],[144,14],[145,14],[146,14],[147,14],[148,14],[149,14],[150,14],[151,14],[152,14],[153,12],[154,14],[155,15],[156,15],[157,14],[158,14],[159,14],[160,14],[161,12],[162,14],[163,14],[164,14],[165,20],[166,21],[121,22],[169,23],[167,24],[168,25],[170,26],[174,6],[179,27],[175,6],[178,28],[177,6],[181,29],[183,30],[176,6],[184,30],[180,6],[185,6],[186,6],[49,31],[50,31],[52,32],[53,33],[54,34],[55,35],[56,36],[57,37],[58,38],[59,39],[60,40],[61,41],[62,41],[63,42],[64,43],[65,44],[66,45],[51,6],[98,6],[67,46],[68,47],[69,48],[99,49],[70,50],[71,51],[72,52],[73,53],[74,54],[75,55],[76,56],[77,57],[78,58],[79,59],[80,60],[81,61],[83,62],[82,63],[84,64],[85,65],[86,66],[87,67],[88,68],[89,69],[90,70],[91,71],[92,72],[93,73],[94,74],[95,75],[96,76],[97,77],[187,6],[188,6],[110,6],[171,15],[108,6],[112,78],[189,6],[111,6],[182,6],[190,6],[191,79],[103,6],[109,6],[40,6],[8,6],[10,6],[9,6],[2,6],[11,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[18,6],[3,6],[4,6],[22,6],[19,6],[20,6],[21,6],[23,6],[24,6],[25,6],[5,6],[26,6],[27,6],[28,6],[29,6],[6,6],[30,6],[31,6],[32,6],[33,6],[7,6],[38,6],[34,6],[35,6],[36,6],[37,6],[1,6],[39,6],[104,6],[48,80],[105,81],[172,82],[173,83],[192,6],[193,6],[196,84],[195,85],[194,6],[197,6],[198,86]],"exportedModulesMap":[[115,1],[119,1],[118,1],[120,2],[117,1],[116,3],[100,4],[101,4],[102,5],[44,6],[43,6],[42,7],[46,7],[47,8],[41,9],[45,7],[106,1],[107,10],[113,11],[114,12],[122,13],[123,12],[139,14],[124,12],[125,12],[126,12],[127,15],[128,12],[129,15],[130,15],[131,16],[132,12],[133,17],[134,12],[135,18],[136,12],[138,19],[137,6],[140,14],[141,14],[142,14],[143,14],[144,14],[145,14],[146,14],[147,14],[148,14],[149,14],[150,14],[151,14],[152,14],[153,12],[154,14],[155,15],[156,15],[157,14],[158,14],[159,14],[160,14],[161,12],[162,14],[163,14],[164,14],[165,20],[166,21],[121,22],[169,23],[167,24],[168,25],[170,26],[174,6],[179,27],[175,6],[178,28],[177,6],[181,29],[183,30],[176,6],[184,30],[180,6],[185,6],[186,6],[49,31],[50,31],[52,32],[53,33],[54,34],[55,35],[56,36],[57,37],[58,38],[59,39],[60,40],[61,41],[62,41],[63,42],[64,43],[65,44],[66,45],[51,6],[98,6],[67,46],[68,47],[69,48],[99,49],[70,50],[71,51],[72,52],[73,53],[74,54],[75,55],[76,56],[77,57],[78,58],[79,59],[80,60],[81,61],[83,62],[82,63],[84,64],[85,65],[86,66],[87,67],[88,68],[89,69],[90,70],[91,71],[92,72],[93,73],[94,74],[95,75],[96,76],[97,77],[187,6],[188,6],[110,6],[171,15],[108,6],[112,78],[189,6],[111,6],[182,6],[190,6],[191,79],[103,6],[109,6],[40,6],[8,6],[10,6],[9,6],[2,6],[11,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[18,6],[3,6],[4,6],[22,6],[19,6],[20,6],[21,6],[23,6],[24,6],[25,6],[5,6],[26,6],[27,6],[28,6],[29,6],[6,6],[30,6],[31,6],[32,6],[33,6],[7,6],[38,6],[34,6],[35,6],[36,6],[37,6],[1,6],[39,6],[104,6],[48,80],[105,81],[172,82],[173,83],[192,6],[193,6],[196,84],[195,85],[194,6],[197,6],[198,86]],"semanticDiagnosticsPerFile":[115,119,118,120,117,116,100,101,102,44,43,42,46,47,41,45,106,107,113,114,122,123,139,124,125,126,127,128,129,130,131,132,133,134,135,136,138,137,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,121,169,167,168,170,174,179,175,178,177,181,183,176,184,180,185,186,49,50,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,51,98,67,68,69,99,70,71,72,73,74,75,76,77,78,79,80,81,83,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,187,188,110,171,108,112,189,111,182,190,191,103,109,40,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,104,48,105,172,173,192,193,196,195,194,197,198]},"version":"4.5.5"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/reflect-metadata/index.d.ts","../node_modules/@cucumber/messages/dist/src/messages.d.ts","../node_modules/@cucumber/messages/dist/src/TimeConversion.d.ts","../node_modules/@cucumber/messages/dist/src/IdGenerator.d.ts","../node_modules/@cucumber/messages/dist/package.json","../node_modules/@cucumber/messages/dist/src/parseEnvelope.d.ts","../node_modules/@cucumber/messages/dist/src/getWorstTestStepResult.d.ts","../node_modules/@cucumber/messages/dist/src/index.d.ts","../src/CucumberHtmlStream.ts","../node_modules/@cucumber/query/dist/src/Query.d.ts","../node_modules/@cucumber/query/dist/src/index.d.ts","../node_modules/@types/react/global.d.ts","../node_modules/csstype/index.d.ts","../node_modules/@types/prop-types/index.d.ts","../node_modules/@types/scheduler/tracing.d.ts","../node_modules/@types/react/index.d.ts","../node_modules/@cucumber/react/dist/src/CucumberQueryContext.d.ts","../node_modules/@cucumber/react/dist/src/EnvelopesQueryContext.d.ts","../node_modules/@cucumber/gherkin-utils/dist/src/GherkinDocumentHandlers.d.ts","../node_modules/@cucumber/gherkin-utils/dist/src/walkGherkinDocument.d.ts","../node_modules/@cucumber/gherkin-utils/dist/src/pretty.d.ts","../node_modules/@cucumber/gherkin-utils/dist/src/Query.d.ts","../node_modules/@cucumber/gherkin-utils/dist/src/GherkinDocumentWalker.d.ts","../node_modules/@cucumber/gherkin-utils/dist/src/index.d.ts","../node_modules/@cucumber/react/dist/src/filter/filterByStatus.d.ts","../node_modules/@cucumber/react/dist/src/GherkinQueryContext.d.ts","../node_modules/@cucumber/react/dist/src/SearchQueryContext.d.ts","../node_modules/@cucumber/react/dist/src/components/app/CICommitLink.d.ts","../node_modules/@cucumber/react/dist/src/components/app/EnvelopesWrapper.d.ts","../node_modules/@cucumber/react/dist/src/components/app/ExecutionSummary.d.ts","../node_modules/@cucumber/react/dist/src/components/app/FilteredResults.d.ts","../node_modules/@cucumber/react/dist/src/components/app/GherkinDocumentList.d.ts","../node_modules/@cucumber/react/dist/src/components/app/HighLight.d.ts","../node_modules/@cucumber/react/dist/src/components/app/NoMatchResult.d.ts","../node_modules/@cucumber/react/dist/src/components/app/QueriesWrapper.d.ts","../node_modules/@cucumber/react/dist/src/components/app/SearchBar.d.ts","../node_modules/@cucumber/react/dist/src/components/app/SearchWrapper.d.ts","../node_modules/@cucumber/react/dist/src/components/app/StatusesSummary.d.ts","../node_modules/@cucumber/react/dist/src/components/app/index.d.ts","../node_modules/@cucumber/react/dist/src/components/customise/customRendering.d.ts","../node_modules/@cucumber/react/dist/src/components/customise/theming.d.ts","../node_modules/@cucumber/react/dist/src/components/customise/index.d.ts","../node_modules/@cucumber/react/dist/src/components/CucumberReact.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Anchor.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Attachment.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Background.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Children.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/DataTable.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Description.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/DocString.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/ErrorMessage.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Examples.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/ExamplesTable.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Feature.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/GherkinDocument.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/GherkinStep.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/HookList.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/HookStep.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Keyword.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/MDG.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Parameter.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Rule.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Scenario.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/StatusIcon.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/StepItem.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/StepList.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Tags.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/Title.d.ts","../node_modules/@cucumber/react/dist/src/components/gherkin/index.d.ts","../node_modules/@cucumber/react/dist/src/components/index.d.ts","../node_modules/@cucumber/react/dist/src/hooks/useQueries.d.ts","../node_modules/@cucumber/react/dist/src/hooks/useSearch.d.ts","../node_modules/@cucumber/react/dist/src/hooks/index.d.ts","../node_modules/@cucumber/react/dist/src/index.d.ts","../node_modules/@types/react-dom/index.d.ts","../src/main.tsx","../test/CucumberHtmlStreamTest.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@cucumber/message-streams/dist/cjs/src/MessageToNdjsonStream.d.ts","../node_modules/@cucumber/message-streams/dist/cjs/src/NdjsonToMessageStream.d.ts","../node_modules/@cucumber/message-streams/dist/cjs/src/index.d.ts","../node_modules/@types/minimatch/index.d.ts","../node_modules/@types/glob/index.d.ts","../node_modules/devtools-protocol/types/protocol.d.ts","../node_modules/devtools-protocol/types/protocol-mapping.d.ts","../node_modules/puppeteer/lib/types.d.ts","../test/acceptance.ts","../package.json","../node_modules/@types/elasticlunr/index.d.ts","../node_modules/@types/eslint/helpers.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/eslint/index.d.ts","../node_modules/@types/eslint-scope/index.d.ts","../node_modules/@types/unist/index.d.ts","../node_modules/@types/hast/index.d.ts","../node_modules/@types/json5/index.d.ts","../node_modules/@types/mdast/index.d.ts","../node_modules/@types/mocha/index.d.ts","../node_modules/@types/parse5/index.d.ts","../node_modules/@types/scheduler/index.d.ts","../node_modules/@types/uuid/index.d.ts","../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},{"version":"8d6d51a5118d000ed3bfe6e1dd1335bebfff3fef23cd2af2f84a24d30f90cc90","affectsGlobalScope":true},"a12cffdfb523dff8bc2aa6284f0fb9830c7f4237a007a2101f93f5488361a7de","fd5f3f30e38d58e2f494e64fa610c03d9935d8a78ae79d1d8d06e76d983138fa","67c50537d02e09de9593718e820326dcc559b93fd910d976a65b0a8edc1b400a","9fac2b0b6a091f55fed5d1ee637cfccf09266ea507cd0e1d09082956c41e3131","8bc721498a9c0716e8b39c8f292f390c3ffbd8a34ab25f3328af35a840bae86b","4b407d2f10d3fd33ef5bb087a5de45e6b5db37439a52758005049fdad53c327e","7ccb0c2d2bb0b7ffc748c5ba2f81da00c5d6fe5942ca06c37d78014646b580cd","d2c1703ca27e28cda9f36c1c9cba026b179c5dc73c16f0f9a6eacc73f882ee5c","3485116e90bdf202373cb67d981490e262ddd2643f4c93d26ed6009e973d0b5e","6c25aa74fa2002408ab646129913b95b47420e43c4429457f5ceb6be3b83df44",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"381899b8d1d4c1be716f18cb5242ba39f66f4b1e31d45af62a32a99f8edcb39d","f7b46d22a307739c145e5fddf537818038fdfffd580d79ed717f4d4d37249380","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"c0a6b1daace087b1d197a4fe67832f587124d1c9b8fdc9978c3dc7007ede8afd","affectsGlobalScope":true},"25e664b405871d042d0b7cc8245870b911252305449f854524a7bc707153f12e","a6fbec18952de1f5080dbff80837564e46015a3741dcf7ed9399e73b744f9b9d","9c22218f2726cd7a72fa2647cae01a6b43a676f49d917d7f3fa50fe9da1c5c6a","f2f49f5a91f31e2badd42d6217425dbf612873134f4a9594dd511ee5f081107c","a83a68fd067b62140483ddb7818cd35e8c1f58abcba2cca8f64cf92483bd2594","1b7a793d08d6f35bc07a409255c67c684e4704d21607ecfec8a5e53f0b0ed6bd","5a473fb6b7e3af6fe99413d758c4af1345986bec1ad3412d7da10770234a6d3f","66042dcb46ccc8d4caf1a1d713365992d28335b66e62c07913db44e296e67502","285de578d443bf93e8318d64fc542a8e55f4c8ca918c717932112fb867cd8cef","0b2ffaa32de7b8324f8b3930b651cf8f75337e4d6956df147f08c52e5a3930b3","3fb0bb35d090d69025f0b48e69644019c48e64f75935775ef3f4d960d4c45939","eb3420db01224f68cb45cb2d992893a9a7c208b650fc8164040714fc3468fd8f","b5d188062597496857e89f8ca098b4c0b02aae08ad095fd0d15fadcfb1ebb520","d9a4d66ddc7b6f09d7e734643a1aab4f277cdef03a0cf10c730818074d0ab834","1d6f29afacc19d5e403f7f86a56d8100dfb63a6905f62674ab4132c5a2b22cfe","3a7de785cee88be902303383ba11a932ae7ecc2b0741f00e0b7e0e0f644b6159","9e37ebd71a9d2cb1a7916f8c62a11fccc548108c5cef15b2efafe1ee000c6f12","fd14618ea5f816aacf158cecd4ae0fcd9356263fb4fa192ef34ca4ee357d8bf3","fc0c9b4e89dcdf76b8d00adbdd0d587b1eb7166349c5c98ae0d883668d0412c9","f2a3bf0b4a6a8b8c30e1d0aea48950b57148b2ae4c082e65a25faa2a55859ab9","349e1ccfa2227170af8cbcecf48c04fb9cc14bd6d7276fa955ca2cfb5595f52b","655f6ef9de7b4a70153dd6db24acaee36dffad737d55c25163af48450a72bdd9","48ffee9aa474c2f631975f9a79b2cafc2e4a22700f209e5730a867747b7edf39","79ee4d2cebda29ab066ed97657e66aa4521904aff4d242d24d1ea4005329b06b","2bb0e7d215c8ec7b37e5ba51b72b00f395ad9cb4c9624c05c105b50888ab9076","7ca4c70fccf4693f54e7e4d0328d97b76b777969d76fe46d70f2a8f917e16462","f049bb85d52e20094e0f93ff587cf6de627d36d15c3eb42f8959d74bbc26de8f","92fe7c925107a898600e75ff203e0e33e122577b031ce70888afbc346a75ae8b","f3c269c6db00e83274f6c0208b4cf9a34a512321bc36c79dd3ab6e6f279aa81b","cba2c177f4e48a92ab44df12077b238f1b756fa6251dfdddf624ebd5addf37b6","97c7b000b3f7bcc3a0bd7ec6cc8d5051476785d107014305c8e8b4c2b0d6d688","5dac7a9094f1d7d9b3bbfcb94cd8c68c0d96b49be4f2bfa63d85f84cd5382892","43033d7faf2c365074fda331a4ee5b3cf915c2baf1478ac6873242451ffd6853","e3268db1cf846c087d24b83b8236f32ee0abca9824c30aa6960dc22fc7f34551","4aa2890026ab0029ff32696161d83f6a27b6924b928f029e43481cfd6733ddfd","9cad55ebd56c492692ffaf29855fc345d32c9fef1e809b48c0b90d529408daac","00c3196d3d2382124bb83f7b09d882c0007b94676b7525e6cf27ef5b9e8c5057","37073c836f2ea53c64b1b7ccd8615c9927622a3d1bdb0716a1c51199df38b935","b55c0b09e2edfab0d63206bed3fad37fa3f3ce49a6663970c92a2e5fe8b7c392","c2a2d97629fe3f55d85a7101ae19e5d07ed713d83d735a316a44d13ca6b8c9d5","41107cfdee6bfe339d6b3680266755a20052210d78870261d019f0a8d7e598d0","422d3dc6020398222b324a3e381d3bbc9bb4f4ceb7d3f3430ea7f89257e8ab51","2bd2e3e79c74bd7eb1a2dd2caa09e145a0e0a428bcdcbe5f1110f847913f804e","0718d9bf0d5878b6e916f041932e3c96d74b42c649bf7b0eebcfe2990e9f02f3","fdc0875e024caed6b4c827df383eceb920a236d391174aa9997c4bddb130a85b","2e773e0d88eafc7a8e33b00d6f90f4293ef7ba87a5224263709c763ce14e68d7","4629bf6d7a875ba35bd9693636dbf7b8beb51bcb31d040c836aa65e59ce1af5e","c7de1dca8ca72ef28e13ec2ba5f93a7baf99f4fa94b466ce1a863a189c5c6320","d53d0dd0734479bd3aa1e36e9895e030b11edf1d2ca58080f270dcdce1b6833c","4a18a39ed4ed4244e1f3c6e5c9c9176713cc808ba07c03285ce6f4e71e463384","55b4875327ad716cc32caa152324e1138f358f7de5a97f249a69d3fd90a54b1b","1143f790997f7af850ed6649e061d39571d30e99b734b28c49ef27eb0190516b","a616ce95910fea53a469aaeef5134d4563d8a81bfe595c1a26fe6a7f68aa3106","b517efc8c5dda407451dd9d09008420f992472f87b3811ae73fc8a1f27848607","cb597b3317793b86009834f3fac391f396cd7b4731de6d774b647ea2283c704e","fb25a93c6fe6a97b70773c8f2d59664beecfce1dfae1617653f0cbbdf611427d","e8f36304015de598fe92c733892017746d0b60c86e280201c0f63683c74f7af6","607e5eff3628141d3a5728c0bcf2ab954504b450e5afbe67b3b9ec233d3b613d","45a63e17814c570ea59407f231ef9c561510bd6edb36f17479b09b44619496c6",{"version":"0cf17aa86e0ec2b3342d3d6ddc0ab347b8f5a8fbeef35e710b35cfc2395ad673","affectsGlobalScope":true},"59f61fbc11025013c291a282102dcf1180ffcd0818ff24b766a65eed02d59649","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"aeeee3998c5a730f8689f04038d41cf4245c9edbf6ef29a698e45b36e399b8ed","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","e3b886bacdd1fbf1f72e654596c80a55c7bc1d10bdf464aaf52f45ecd243862f","c665d5c50c2573aefd98f0ffb12c5583e333ed94294ce6f144a4163a8c84f09b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"839e0b959028f5385ca8de7b9d9c00d71a5955d52d2c98cb3e488a626f7b90b3","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","945a841f9a591197154c85386bc5a1467d42d325104bb36db51bc566bbb240be","10c39ce1df102994b47d4bc0c71aa9a6aea76f4651a5ec51914431f50bc883a1",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","3fa48484c65913004d5abb5c0f917b61ea4684f32d05bb28c1ecfa5f05a9ed12","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"dd9ea469d1bfaf589c6a196275d35cb1aa14014707c2c46d920c7b921e8f5bca","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1503a452a67127e5c2da794d1c7c44344d5038373aae16c9b03ac964db159edd","5de527239935c39b0aa1935462237edb7878653ea250968d8e4da30fa086544d","64c22bbc4820ab22d553ea9279c66c0c2bb436d24d4afee3bf24d7eebe5dafb3","1e8b1fc7f4da254ff591ea7abe6e59b7043105f3a3c91e451c74adf1f686e5d4","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","8c54b89d221b595e5e4c59371492cb7bcbdf77a35662d036f58129bcf188a3cd","f307376eed0c52c14dec45b640570611e05e8e1d55150b28dec4a26830b55b49","e91571805d96d1bd31ac255c25a51e29467ea918e876f4da64116933ad9358bf","0587ef933477bd87ca2dac5300e955e1f8efa82b4caf311a1f8ab86ee187a1a0","4f540f784e19abf9b0329d82c5efd1f35f382f4e313525b0e76e6aed74487e67","a217d7ae13d0b33efed42acef8421f7f885bb113c8613fc0ebd64cb59bf1b887",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","8566fa84085caa46340393b1704ecd368491918fb45bd688d6e89736aec73a2f","dc33ce27fbeaf0ea3da556c80a6cc8af9d13eb443088c8f25cdc39fca8e756f6","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63",{"version":"30bf01dd2e284098445264c8d71c608890cc11c142f36d0193aa655bdc0a40cb","affectsGlobalScope":true},"c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","b2d70a269840a9528db473ac7565442434333a05c1f66801a7a672e82beb903e"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":1,"noImplicitAny":true,"outDir":"./","rootDir":"..","skipLibCheck":true,"sourceMap":true,"strictNullChecks":true,"target":2},"fileIdsList":[[47,160],[58,59,60,61,62,160],[47,58,160],[47,149,160,167],[160,168,169],[160],[41,160],[41,42,43,44,45,46,160],[40,160],[49,160],[50,55,160],[47,55,160],[55,63,160],[55,81,160],[55,160],[50,55,57,63,160],[55,66,160],[67,68,69,70,71,72,73,74,75,76,77,160],[79,80,160],[83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,160],[78,81,82,108,160],[47,50,63,160],[110,111,160],[50,57,63,160],[66,160],[56,57,64,65,66,109,112,160],[160,181,182],[160,179,180,181],[132,133,160,167,171],[160,184],[117,160],[120,160],[121,126,160],[122,132,133,140,149,159,160],[122,123,132,140,160],[124,160],[125,126,133,141,160],[126,149,156,160],[127,129,132,140,160],[128,160],[129,130,160],[131,132,160],[132,160],[132,133,134,149,159,160],[132,133,134,149,160],[135,140,149,159,160],[132,133,135,136,140,149,156,159,160],[135,137,149,156,159,160],[117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166],[132,138,160],[139,159,160],[129,132,140,149,160],[141,160],[142,160],[120,143,160],[144,158,160,164],[145,160],[146,160],[132,147,160],[147,148,160,162],[132,149,150,151,160],[149,151,160],[149,150,160],[152,160],[153,160],[132,154,155,160],[154,155,160],[126,140,156,160],[157,160],[140,158,160],[121,135,146,159,160],[126,160],[149,160,161],[160,162],[160,163],[121,126,132,134,143,149,159,160,162,164],[149,160,165],[51,52,53,54,160],[132,149,160,167],[160,173],[122,149,160,167,173,174],[47,133,149,160],[47,55,113,114,160],[47,48,117,149,160],[48,117,133,142,149,160,170,172,175]],"referencedMap":[[58,1],[62,1],[61,1],[63,2],[60,1],[59,3],[168,4],[169,4],[170,5],[44,6],[43,6],[42,7],[46,7],[47,8],[41,9],[45,7],[49,1],[50,10],[56,11],[57,12],[65,13],[66,12],[82,14],[67,12],[68,12],[69,12],[70,15],[71,12],[72,15],[73,15],[74,16],[75,12],[76,17],[77,12],[78,18],[79,12],[81,19],[80,6],[83,14],[84,14],[85,14],[86,14],[87,14],[88,14],[89,14],[90,14],[91,14],[92,14],[93,14],[94,14],[95,14],[96,12],[97,14],[98,15],[99,15],[100,14],[101,14],[102,14],[103,14],[104,12],[105,14],[106,14],[107,14],[108,20],[109,21],[64,22],[112,23],[110,24],[111,25],[113,26],[178,6],[183,27],[179,6],[182,28],[181,6],[172,29],[185,30],[180,6],[186,6],[187,30],[171,6],[188,6],[117,31],[118,31],[120,32],[121,33],[122,34],[123,35],[124,36],[125,37],[126,38],[127,39],[128,40],[129,41],[130,41],[131,42],[132,43],[133,44],[134,45],[119,6],[166,6],[135,46],[136,47],[137,48],[167,49],[138,50],[139,51],[140,52],[141,53],[142,54],[143,55],[144,56],[145,57],[146,58],[147,59],[148,60],[149,61],[151,62],[150,63],[152,64],[153,65],[154,66],[155,67],[156,68],[157,69],[158,70],[159,71],[160,72],[161,73],[162,74],[163,75],[164,76],[165,77],[189,6],[53,6],[114,15],[51,6],[55,78],[190,6],[54,6],[184,6],[191,6],[192,79],[52,6],[174,80],[173,6],[175,81],[40,6],[8,6],[10,6],[9,6],[2,6],[11,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[18,6],[3,6],[4,6],[22,6],[19,6],[20,6],[21,6],[23,6],[24,6],[25,6],[5,6],[26,6],[27,6],[28,6],[29,6],[6,6],[30,6],[31,6],[32,6],[33,6],[7,6],[38,6],[34,6],[35,6],[36,6],[37,6],[1,6],[39,6],[177,6],[48,82],[115,83],[116,84],[176,85]],"exportedModulesMap":[[58,1],[62,1],[61,1],[63,2],[60,1],[59,3],[168,4],[169,4],[170,5],[44,6],[43,6],[42,7],[46,7],[47,8],[41,9],[45,7],[49,1],[50,10],[56,11],[57,12],[65,13],[66,12],[82,14],[67,12],[68,12],[69,12],[70,15],[71,12],[72,15],[73,15],[74,16],[75,12],[76,17],[77,12],[78,18],[79,12],[81,19],[80,6],[83,14],[84,14],[85,14],[86,14],[87,14],[88,14],[89,14],[90,14],[91,14],[92,14],[93,14],[94,14],[95,14],[96,12],[97,14],[98,15],[99,15],[100,14],[101,14],[102,14],[103,14],[104,12],[105,14],[106,14],[107,14],[108,20],[109,21],[64,22],[112,23],[110,24],[111,25],[113,26],[178,6],[183,27],[179,6],[182,28],[181,6],[172,29],[185,30],[180,6],[186,6],[187,30],[171,6],[188,6],[117,31],[118,31],[120,32],[121,33],[122,34],[123,35],[124,36],[125,37],[126,38],[127,39],[128,40],[129,41],[130,41],[131,42],[132,43],[133,44],[134,45],[119,6],[166,6],[135,46],[136,47],[137,48],[167,49],[138,50],[139,51],[140,52],[141,53],[142,54],[143,55],[144,56],[145,57],[146,58],[147,59],[148,60],[149,61],[151,62],[150,63],[152,64],[153,65],[154,66],[155,67],[156,68],[157,69],[158,70],[159,71],[160,72],[161,73],[162,74],[163,75],[164,76],[165,77],[189,6],[53,6],[114,15],[51,6],[55,78],[190,6],[54,6],[184,6],[191,6],[192,79],[52,6],[174,80],[173,6],[175,81],[40,6],[8,6],[10,6],[9,6],[2,6],[11,6],[12,6],[13,6],[14,6],[15,6],[16,6],[17,6],[18,6],[3,6],[4,6],[22,6],[19,6],[20,6],[21,6],[23,6],[24,6],[25,6],[5,6],[26,6],[27,6],[28,6],[29,6],[6,6],[30,6],[31,6],[32,6],[33,6],[7,6],[38,6],[34,6],[35,6],[36,6],[37,6],[1,6],[39,6],[177,6],[48,82],[115,83],[116,84],[176,85]],"semanticDiagnosticsPerFile":[58,62,61,63,60,59,168,169,170,44,43,42,46,47,41,45,49,50,56,57,65,66,82,67,68,69,70,71,72,73,74,75,76,77,78,79,81,80,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,64,112,110,111,113,178,183,179,182,181,172,185,180,186,187,171,188,117,118,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,119,166,135,136,137,167,138,139,140,141,142,143,144,145,146,147,148,149,151,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165,189,53,114,51,55,190,54,184,191,192,52,174,173,175,40,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,38,34,35,36,37,1,39,177,48,115,116,176]},"version":"4.6.2"}
|
package/package.json
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cucumber/html-formatter",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "19.0.0",
|
|
4
4
|
"description": "HTML formatter for Cucumber",
|
|
5
|
-
"bin": {
|
|
6
|
-
"cucumber-html-formatter": "bin/cucumber-html-formatter.js"
|
|
7
|
-
},
|
|
8
5
|
"main": "dist/src/CucumberHtmlStream.js",
|
|
9
6
|
"types": "dist/src/CucumberHtmlStream.d.ts",
|
|
10
7
|
"repository": {
|
|
@@ -14,40 +11,62 @@
|
|
|
14
11
|
"author": "Aslak Hellesøy",
|
|
15
12
|
"license": "MIT",
|
|
16
13
|
"scripts": {
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
14
|
+
"clean": "shx rm -rf dist",
|
|
15
|
+
"build:tsc": "tsc --build tsconfig.build.json",
|
|
16
|
+
"build:webpack": "webpack",
|
|
17
|
+
"build": "npm run clean && npm run build:tsc && npm run prepare && npm run build:webpack",
|
|
18
|
+
"prepare": "shx mkdir -p dist/src && shx cp src/*.scss dist/src && shx cp src/index.mustache.html dist/src",
|
|
19
|
+
"test": "mocha --exclude test/acceptance.ts",
|
|
20
|
+
"prepublishOnly": "npm run build",
|
|
21
|
+
"eslint:fix": "eslint --ext ts,tsx --max-warnings 0 --fix src test",
|
|
22
|
+
"eslint": "eslint --ext ts,tsx --max-warnings 0 src test",
|
|
23
|
+
"validate": "mocha test/acceptance.ts"
|
|
20
24
|
},
|
|
21
|
-
"
|
|
22
|
-
"@cucumber/messages": "
|
|
23
|
-
"commander": "8.3.0",
|
|
24
|
-
"source-map-support": "0.5.21"
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"@cucumber/messages": ">=17"
|
|
25
27
|
},
|
|
26
28
|
"devDependencies": {
|
|
27
|
-
"@babel/core": "7.
|
|
28
|
-
"@cucumber/
|
|
29
|
+
"@babel/core": "7.17.8",
|
|
30
|
+
"@cucumber/compatibility-kit": "^9.1.2",
|
|
31
|
+
"@cucumber/gherkin": "22.0.0",
|
|
32
|
+
"@cucumber/gherkin-streams": "^5.0.0",
|
|
29
33
|
"@cucumber/gherkin-utils": "^7.0.0",
|
|
30
|
-
"@cucumber/message-streams": "^
|
|
34
|
+
"@cucumber/message-streams": "^4.0.0",
|
|
35
|
+
"@cucumber/messages": "^17.1.1",
|
|
31
36
|
"@cucumber/query": "^11.0.0",
|
|
32
|
-
"@cucumber/react": "^19.
|
|
37
|
+
"@cucumber/react": "^19.2.0",
|
|
38
|
+
"@types/glob": "^7.2.0",
|
|
33
39
|
"@types/mocha": "9.1.0",
|
|
34
|
-
"@types/node": "16.11.
|
|
35
|
-
"@types/react": "17.0.
|
|
36
|
-
"@types/react-dom": "17.0.
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
40
|
+
"@types/node": "16.11.26",
|
|
41
|
+
"@types/react": "17.0.41",
|
|
42
|
+
"@types/react-dom": "17.0.14",
|
|
43
|
+
"@typescript-eslint/eslint-plugin": "^5.10.1",
|
|
44
|
+
"@typescript-eslint/parser": "^5.10.1",
|
|
45
|
+
"babel-loader": "8.2.4",
|
|
46
|
+
"css-loader": "6.7.1",
|
|
47
|
+
"eslint": "^8.7.0",
|
|
48
|
+
"eslint-config-prettier": "^8.3.0",
|
|
49
|
+
"eslint-plugin-import": "^2.25.4",
|
|
50
|
+
"eslint-plugin-node": "^11.1.0",
|
|
51
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
52
|
+
"eslint-plugin-react": "^7.28.0",
|
|
53
|
+
"eslint-plugin-react-hooks": "^4.3.0",
|
|
54
|
+
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
55
|
+
"glob": "^7.2.0",
|
|
56
|
+
"mini-css-extract-plugin": "2.6.0",
|
|
57
|
+
"mocha": "9.2.2",
|
|
58
|
+
"prettier": "^2.5.1",
|
|
42
59
|
"puppeteer": "^13.1.2",
|
|
43
60
|
"react": "17.0.2",
|
|
44
61
|
"react-dom": "17.0.2",
|
|
45
|
-
"sass": "1.49.
|
|
46
|
-
"sass-loader": "12.
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
62
|
+
"sass": "1.49.9",
|
|
63
|
+
"sass-loader": "12.6.0",
|
|
64
|
+
"shx": "^0.3.4",
|
|
65
|
+
"source-map-support": "0.5.21",
|
|
66
|
+
"ts-loader": "9.2.8",
|
|
67
|
+
"ts-node": "10.7.0",
|
|
68
|
+
"typescript": "4.6.2",
|
|
69
|
+
"webpack": "5.70.0",
|
|
51
70
|
"webpack-cli": "4.9.2"
|
|
52
71
|
},
|
|
53
72
|
"bugs": {
|