@allurereport/plugin-classic 3.0.0-beta.20 → 3.0.0-beta.21
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/dist/generators.js +2 -2
- package/package.json +6 -5
package/dist/generators.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { compareBy, createBaseUrlScript, createFontLinkTag, createReportDataScript, createScriptTag, createStylesLinkTag,
|
|
1
|
+
import { compareBy, createBaseUrlScript, createFontLinkTag, createReportDataScript, createScriptTag, createStylesLinkTag, incrementStatistic, nullsLast, ordinal, } from "@allurereport/core-api";
|
|
2
2
|
import { createTreeByCategories, createTreeByLabels, filterTree, sortTree, transformTree, } from "@allurereport/plugin-api";
|
|
3
|
+
import { getPieChartValues } from "@allurereport/web-commons";
|
|
3
4
|
import Handlebars from "handlebars";
|
|
4
5
|
import { readFile } from "node:fs/promises";
|
|
5
6
|
import { createRequire } from "node:module";
|
|
@@ -229,7 +230,6 @@ export const generateStaticFiles = async (payload) => {
|
|
|
229
230
|
if (err instanceof RangeError) {
|
|
230
231
|
console.error("The report is too large to be generated in the single file mode!");
|
|
231
232
|
process.exit(1);
|
|
232
|
-
return;
|
|
233
233
|
}
|
|
234
234
|
throw err;
|
|
235
235
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@allurereport/plugin-classic",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.21",
|
|
4
4
|
"description": "The classic version of Allure HTML report",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"allure",
|
|
@@ -30,10 +30,11 @@
|
|
|
30
30
|
"test": "rimraf ./out && vitest run"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@allurereport/core-api": "3.0.0-beta.
|
|
34
|
-
"@allurereport/plugin-api": "3.0.0-beta.
|
|
35
|
-
"@allurereport/web-awesome": "3.0.0-beta.
|
|
36
|
-
"@allurereport/web-classic": "3.0.0-beta.
|
|
33
|
+
"@allurereport/core-api": "3.0.0-beta.21",
|
|
34
|
+
"@allurereport/plugin-api": "3.0.0-beta.21",
|
|
35
|
+
"@allurereport/web-awesome": "3.0.0-beta.21",
|
|
36
|
+
"@allurereport/web-classic": "3.0.0-beta.21",
|
|
37
|
+
"@allurereport/web-commons": "3.0.0-beta.21",
|
|
37
38
|
"d3-shape": "^3.2.0",
|
|
38
39
|
"handlebars": "^4.7.8"
|
|
39
40
|
},
|