@cucumber/html-formatter 11.0.0 → 11.0.4
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/Makefile +15 -0
- package/check.js +22 -0
- package/dist/main.js +164 -2
- package/dist/package.json +5 -4
- package/package.json +5 -4
- package/webpack.config.js +4 -10
- package/dist/main.js.LICENSE.txt +0 -154
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cucumber/html-formatter",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.4",
|
|
4
4
|
"description": "HTML formatter for Cucumber",
|
|
5
5
|
"bin": {
|
|
6
6
|
"cucumber-html-formatter": "bin/cucumber-html-formatter.js"
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@cucumber/gherkin-utils": "^2.1.1",
|
|
25
25
|
"@cucumber/messages": "^13.2.1",
|
|
26
|
-
"@cucumber/query": "^7.0.
|
|
27
|
-
"@cucumber/react": "^11.0.
|
|
26
|
+
"@cucumber/query": "^7.0.1",
|
|
27
|
+
"@cucumber/react": "^11.0.2",
|
|
28
28
|
"commander": "^6.2.1",
|
|
29
29
|
"react": "^17.0.1",
|
|
30
30
|
"react-dom": "^17.0.1",
|
|
@@ -51,10 +51,11 @@
|
|
|
51
51
|
"npm-link-shared": "^0.5.6",
|
|
52
52
|
"nyc": "^15.1.0",
|
|
53
53
|
"prettier": "^2.2.1",
|
|
54
|
+
"puppeteer": "^5.5.0",
|
|
54
55
|
"ts-loader": "^8.0.12",
|
|
55
56
|
"ts-node": "^9.1.1",
|
|
56
57
|
"typescript": "^4.1.3",
|
|
57
|
-
"webpack": "^
|
|
58
|
+
"webpack": "^4.44.2",
|
|
58
59
|
"webpack-cli": "^4.2.0"
|
|
59
60
|
},
|
|
60
61
|
"bugs": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cucumber/html-formatter",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.4",
|
|
4
4
|
"description": "HTML formatter for Cucumber",
|
|
5
5
|
"bin": {
|
|
6
6
|
"cucumber-html-formatter": "bin/cucumber-html-formatter.js"
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@cucumber/gherkin-utils": "^2.1.1",
|
|
25
25
|
"@cucumber/messages": "^13.2.1",
|
|
26
|
-
"@cucumber/query": "^7.0.
|
|
27
|
-
"@cucumber/react": "^11.0.
|
|
26
|
+
"@cucumber/query": "^7.0.1",
|
|
27
|
+
"@cucumber/react": "^11.0.2",
|
|
28
28
|
"commander": "^6.2.1",
|
|
29
29
|
"react": "^17.0.1",
|
|
30
30
|
"react-dom": "^17.0.1",
|
|
@@ -51,10 +51,11 @@
|
|
|
51
51
|
"npm-link-shared": "^0.5.6",
|
|
52
52
|
"nyc": "^15.1.0",
|
|
53
53
|
"prettier": "^2.2.1",
|
|
54
|
+
"puppeteer": "^5.5.0",
|
|
54
55
|
"ts-loader": "^8.0.12",
|
|
55
56
|
"ts-node": "^9.1.1",
|
|
56
57
|
"typescript": "^4.1.3",
|
|
57
|
-
"webpack": "^
|
|
58
|
+
"webpack": "^4.44.2",
|
|
58
59
|
"webpack-cli": "^4.2.0"
|
|
59
60
|
},
|
|
60
61
|
"bugs": {
|
package/webpack.config.js
CHANGED
|
@@ -4,16 +4,10 @@ module.exports = {
|
|
|
4
4
|
entry: './src/main.tsx',
|
|
5
5
|
module: {
|
|
6
6
|
rules: [
|
|
7
|
-
{
|
|
7
|
+
{
|
|
8
|
+
test: /\.tsx?$/,
|
|
9
|
+
use: 'ts-loader'
|
|
10
|
+
}
|
|
8
11
|
]
|
|
9
|
-
},
|
|
10
|
-
resolve: {
|
|
11
|
-
fallback: {
|
|
12
|
-
stream: false,
|
|
13
|
-
path: false
|
|
14
|
-
},
|
|
15
|
-
alias: {
|
|
16
|
-
react: path.resolve('./node_modules/react')
|
|
17
|
-
}
|
|
18
12
|
}
|
|
19
13
|
};
|
package/dist/main.js.LICENSE.txt
DELETED
|
@@ -1,154 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
object-assign
|
|
3
|
-
(c) Sindre Sorhus
|
|
4
|
-
@license MIT
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
/*!
|
|
8
|
-
* Determine if an object is a Buffer
|
|
9
|
-
*
|
|
10
|
-
* @author Feross Aboukhadijeh <https://feross.org>
|
|
11
|
-
* @license MIT
|
|
12
|
-
*/
|
|
13
|
-
|
|
14
|
-
/*!
|
|
15
|
-
* Font Awesome Free 5.15.1 by @fontawesome - https://fontawesome.com
|
|
16
|
-
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
/*!
|
|
20
|
-
* elasticlunr.Configuration
|
|
21
|
-
* Copyright (C) 2016 Wei Song
|
|
22
|
-
*/
|
|
23
|
-
|
|
24
|
-
/*!
|
|
25
|
-
* elasticlunr.DocumentStore
|
|
26
|
-
* Copyright (C) 2016 Wei Song
|
|
27
|
-
*/
|
|
28
|
-
|
|
29
|
-
/*!
|
|
30
|
-
* elasticlunr.EventEmitter
|
|
31
|
-
* Copyright (C) 2016 Oliver Nightingale
|
|
32
|
-
* Copyright (C) 2016 Wei Song
|
|
33
|
-
*/
|
|
34
|
-
|
|
35
|
-
/*!
|
|
36
|
-
* elasticlunr.Index
|
|
37
|
-
* Copyright (C) 2016 Oliver Nightingale
|
|
38
|
-
* Copyright (C) 2016 Wei Song
|
|
39
|
-
*/
|
|
40
|
-
|
|
41
|
-
/*!
|
|
42
|
-
* elasticlunr.InvertedIndex
|
|
43
|
-
* Copyright (C) 2016 Wei Song
|
|
44
|
-
* Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
|
|
45
|
-
*/
|
|
46
|
-
|
|
47
|
-
/*!
|
|
48
|
-
* elasticlunr.Pipeline
|
|
49
|
-
* Copyright (C) 2016 Oliver Nightingale
|
|
50
|
-
* Copyright (C) 2016 Wei Song
|
|
51
|
-
*/
|
|
52
|
-
|
|
53
|
-
/*!
|
|
54
|
-
* elasticlunr.js
|
|
55
|
-
* Copyright (C) 2016 Oliver Nightingale
|
|
56
|
-
* Copyright (C) 2016 Wei Song
|
|
57
|
-
*/
|
|
58
|
-
|
|
59
|
-
/*!
|
|
60
|
-
* elasticlunr.stemmer
|
|
61
|
-
* Copyright (C) 2016 Oliver Nightingale
|
|
62
|
-
* Copyright (C) 2016 Wei Song
|
|
63
|
-
* Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
|
|
64
|
-
*/
|
|
65
|
-
|
|
66
|
-
/*!
|
|
67
|
-
* elasticlunr.stopWordFilter
|
|
68
|
-
* Copyright (C) 2016 Oliver Nightingale
|
|
69
|
-
* Copyright (C) 2016 Wei Song
|
|
70
|
-
*/
|
|
71
|
-
|
|
72
|
-
/*!
|
|
73
|
-
* elasticlunr.tokenizer
|
|
74
|
-
* Copyright (C) 2016 Oliver Nightingale
|
|
75
|
-
* Copyright (C) 2016 Wei Song
|
|
76
|
-
*/
|
|
77
|
-
|
|
78
|
-
/*!
|
|
79
|
-
* elasticlunr.trimmer
|
|
80
|
-
* Copyright (C) 2016 Oliver Nightingale
|
|
81
|
-
* Copyright (C) 2016 Wei Song
|
|
82
|
-
*/
|
|
83
|
-
|
|
84
|
-
/*!
|
|
85
|
-
* elasticlunr.utils
|
|
86
|
-
* Copyright (C) 2016 Oliver Nightingale
|
|
87
|
-
* Copyright (C) 2016 Wei Song
|
|
88
|
-
*/
|
|
89
|
-
|
|
90
|
-
/*!
|
|
91
|
-
* lunr.SortedSet
|
|
92
|
-
* Copyright (C) 2016 Oliver Nightingale
|
|
93
|
-
*/
|
|
94
|
-
|
|
95
|
-
/*! *****************************************************************************
|
|
96
|
-
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
97
|
-
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
98
|
-
this file except in compliance with the License. You may obtain a copy of the
|
|
99
|
-
License at http://www.apache.org/licenses/LICENSE-2.0
|
|
100
|
-
|
|
101
|
-
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
102
|
-
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
|
|
103
|
-
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
|
|
104
|
-
MERCHANTABLITY OR NON-INFRINGEMENT.
|
|
105
|
-
|
|
106
|
-
See the Apache Version 2.0 License for specific language governing permissions
|
|
107
|
-
and limitations under the License.
|
|
108
|
-
***************************************************************************** */
|
|
109
|
-
|
|
110
|
-
/**
|
|
111
|
-
* elasticlunr - http://weixsong.github.io
|
|
112
|
-
* Lightweight full-text search engine in Javascript for browser search and offline search. - 0.9.5
|
|
113
|
-
*
|
|
114
|
-
* Copyright (C) 2016 Oliver Nightingale
|
|
115
|
-
* Copyright (C) 2016 Wei Song
|
|
116
|
-
* MIT Licensed
|
|
117
|
-
* @license
|
|
118
|
-
*/
|
|
119
|
-
|
|
120
|
-
/** @license React v0.20.1
|
|
121
|
-
* scheduler.production.min.js
|
|
122
|
-
*
|
|
123
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
124
|
-
*
|
|
125
|
-
* This source code is licensed under the MIT license found in the
|
|
126
|
-
* LICENSE file in the root directory of this source tree.
|
|
127
|
-
*/
|
|
128
|
-
|
|
129
|
-
/** @license React v16.13.1
|
|
130
|
-
* react-is.production.min.js
|
|
131
|
-
*
|
|
132
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
133
|
-
*
|
|
134
|
-
* This source code is licensed under the MIT license found in the
|
|
135
|
-
* LICENSE file in the root directory of this source tree.
|
|
136
|
-
*/
|
|
137
|
-
|
|
138
|
-
/** @license React v17.0.1
|
|
139
|
-
* react-dom.production.min.js
|
|
140
|
-
*
|
|
141
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
142
|
-
*
|
|
143
|
-
* This source code is licensed under the MIT license found in the
|
|
144
|
-
* LICENSE file in the root directory of this source tree.
|
|
145
|
-
*/
|
|
146
|
-
|
|
147
|
-
/** @license React v17.0.1
|
|
148
|
-
* react.production.min.js
|
|
149
|
-
*
|
|
150
|
-
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
151
|
-
*
|
|
152
|
-
* This source code is licensed under the MIT license found in the
|
|
153
|
-
* LICENSE file in the root directory of this source tree.
|
|
154
|
-
*/
|