@cucumber/html-formatter
Advanced tools
Comparing version 16.0.1 to 17.0.0
@@ -15,3 +15,3 @@ /* | ||
/*! | ||
* Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com | ||
* Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com | ||
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) | ||
@@ -18,0 +18,0 @@ */ |
{ | ||
"name": "@cucumber/html-formatter", | ||
"version": "16.0.1", | ||
"version": "17.0.0", | ||
"description": "HTML formatter for Cucumber", | ||
@@ -21,30 +21,30 @@ "bin": { | ||
"dependencies": { | ||
"@cucumber/messages": "^17.0.1", | ||
"commander": "8.0.0", | ||
"@cucumber/messages": "^17.1.0", | ||
"commander": "8.1.0", | ||
"source-map-support": "0.5.19" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "7.14.6", | ||
"@cucumber/gherkin-streams": "^3.0.0", | ||
"@cucumber/gherkin-utils": "^6.0.0", | ||
"@babel/core": "7.15.0", | ||
"@cucumber/gherkin-streams": "^4.0.0", | ||
"@cucumber/gherkin-utils": "^7.0.0", | ||
"@cucumber/message-streams": "^3.0.0", | ||
"@cucumber/query": "^11.0.0", | ||
"@cucumber/react": "^17.0.0", | ||
"@types/mocha": "8.2.3", | ||
"@types/node": "14.17.5", | ||
"@types/react": "17.0.14", | ||
"@cucumber/react": "^18.0.0", | ||
"@types/mocha": "9.0.0", | ||
"@types/node": "14.17.14", | ||
"@types/react": "17.0.19", | ||
"@types/react-dom": "17.0.9", | ||
"babel-loader": "8.2.2", | ||
"css-loader": "6.1.0", | ||
"mini-css-extract-plugin": "2.1.0", | ||
"mocha": "9.0.2", | ||
"puppeteer": "10.1.0", | ||
"css-loader": "6.2.0", | ||
"mini-css-extract-plugin": "2.2.2", | ||
"mocha": "9.1.1", | ||
"puppeteer": "10.2.0", | ||
"react": "17.0.2", | ||
"react-dom": "17.0.2", | ||
"sass-loader": "12.1.0", | ||
"ts-loader": "9.2.3", | ||
"ts-node": "10.1.0", | ||
"typescript": "4.3.5", | ||
"webpack": "5.45.1", | ||
"webpack-cli": "4.7.2" | ||
"ts-loader": "9.2.5", | ||
"ts-node": "10.2.1", | ||
"typescript": "4.4.2", | ||
"webpack": "5.51.1", | ||
"webpack-cli": "4.8.0" | ||
}, | ||
@@ -51,0 +51,0 @@ "bugs": { |
@@ -15,3 +15,3 @@ "use strict"; | ||
const toMessageStream = new message_streams_1.NdjsonToMessageStream(); | ||
stream_1.pipeline(process.stdin, toMessageStream, new CucumberHtmlStream_1.default(__dirname + '/../../dist/main.css', __dirname + '/../../dist/main.js'), process.stdout, (err) => { | ||
(0, stream_1.pipeline)(process.stdin, toMessageStream, new CucumberHtmlStream_1.default(__dirname + '/../../dist/main.css', __dirname + '/../../dist/main.js'), process.stdout, (err) => { | ||
if (err) { | ||
@@ -18,0 +18,0 @@ // tslint:disable-next-line:no-console |
@@ -11,2 +11,3 @@ "use strict"; | ||
const react_dom_1 = __importDefault(require("react-dom")); | ||
const { FilteredResults, QueriesWrapper } = react_1.components.app; | ||
const gherkinQuery = new gherkin_utils_1.Query(); | ||
@@ -20,5 +21,5 @@ const cucumberQuery = new query_1.Query(); | ||
} | ||
const app = (react_2.default.createElement(react_1.QueriesWrapper, Object.assign({ gherkinQuery: gherkinQuery, cucumberQuery: cucumberQuery, envelopesQuery: envelopesQuery }, react_1.searchFromURLParams()), | ||
react_2.default.createElement(react_1.FilteredResults, null))); | ||
const app = (react_2.default.createElement(QueriesWrapper, Object.assign({ gherkinQuery: gherkinQuery, cucumberQuery: cucumberQuery, envelopesQuery: envelopesQuery }, (0, react_1.searchFromURLParams)()), | ||
react_2.default.createElement(FilteredResults, null))); | ||
react_dom_1.default.render(app, document.getElementById('content')); | ||
//# sourceMappingURL=main.js.map |
@@ -42,3 +42,3 @@ "use strict"; | ||
const html = yield renderAsHtml(); | ||
assert_1.default(html.indexOf('window.CUCUMBER_MESSAGES = []') >= 0); | ||
(0, assert_1.default)(html.indexOf('window.CUCUMBER_MESSAGES = []') >= 0); | ||
})); | ||
@@ -52,3 +52,3 @@ it('writes one message to html', () => __awaiter(void 0, void 0, void 0, function* () { | ||
const html = yield renderAsHtml(e1); | ||
assert_1.default(html.indexOf(`window.CUCUMBER_MESSAGES = [${JSON.stringify(e1)}]`) >= 0); | ||
(0, assert_1.default)(html.indexOf(`window.CUCUMBER_MESSAGES = [${JSON.stringify(e1)}]`) >= 0); | ||
})); | ||
@@ -68,5 +68,5 @@ it('writes two messages to html', () => __awaiter(void 0, void 0, void 0, function* () { | ||
const html = yield renderAsHtml(e1, e2); | ||
assert_1.default(html.indexOf(`window.CUCUMBER_MESSAGES = [${JSON.stringify(e1)},${JSON.stringify(e2)}]`) >= 0); | ||
(0, assert_1.default)(html.indexOf(`window.CUCUMBER_MESSAGES = [${JSON.stringify(e1)},${JSON.stringify(e2)}]`) >= 0); | ||
})); | ||
}); | ||
//# sourceMappingURL=CucumberHtmlStreamTest.js.map |
{ | ||
"name": "@cucumber/html-formatter", | ||
"version": "16.0.1", | ||
"version": "17.0.0", | ||
"description": "HTML formatter for Cucumber", | ||
@@ -21,30 +21,30 @@ "bin": { | ||
"dependencies": { | ||
"@cucumber/messages": "^17.0.1", | ||
"commander": "8.0.0", | ||
"@cucumber/messages": "^17.1.0", | ||
"commander": "8.1.0", | ||
"source-map-support": "0.5.19" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "7.14.6", | ||
"@cucumber/gherkin-streams": "^3.0.0", | ||
"@cucumber/gherkin-utils": "^6.0.0", | ||
"@babel/core": "7.15.0", | ||
"@cucumber/gherkin-streams": "^4.0.0", | ||
"@cucumber/gherkin-utils": "^7.0.0", | ||
"@cucumber/message-streams": "^3.0.0", | ||
"@cucumber/query": "^11.0.0", | ||
"@cucumber/react": "^17.0.0", | ||
"@types/mocha": "8.2.3", | ||
"@types/node": "14.17.5", | ||
"@types/react": "17.0.14", | ||
"@cucumber/react": "^18.0.0", | ||
"@types/mocha": "9.0.0", | ||
"@types/node": "14.17.14", | ||
"@types/react": "17.0.19", | ||
"@types/react-dom": "17.0.9", | ||
"babel-loader": "8.2.2", | ||
"css-loader": "6.1.0", | ||
"mini-css-extract-plugin": "2.1.0", | ||
"mocha": "9.0.2", | ||
"puppeteer": "10.1.0", | ||
"css-loader": "6.2.0", | ||
"mini-css-extract-plugin": "2.2.2", | ||
"mocha": "9.1.1", | ||
"puppeteer": "10.2.0", | ||
"react": "17.0.2", | ||
"react-dom": "17.0.2", | ||
"sass-loader": "12.1.0", | ||
"ts-loader": "9.2.3", | ||
"ts-node": "10.1.0", | ||
"typescript": "4.3.5", | ||
"webpack": "5.45.1", | ||
"webpack-cli": "4.7.2" | ||
"ts-loader": "9.2.5", | ||
"ts-node": "10.2.1", | ||
"typescript": "4.4.2", | ||
"webpack": "5.51.1", | ||
"webpack-cli": "4.8.0" | ||
}, | ||
@@ -51,0 +51,0 @@ "bugs": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1476980
573
+ Addedcommander@8.1.0(transitive)
- Removedcommander@8.0.0(transitive)
Updated@cucumber/messages@^17.1.0
Updatedcommander@8.1.0