@allurereport/web-allure2 3.0.0-beta.20 → 3.0.0-beta.22
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/multi/app-3066f0696365c03edbc7.js +2 -0
- package/dist/multi/manifest.json +17 -17
- package/dist/single/app-f456dd8072a33a483e3e.js +2 -0
- package/dist/single/manifest.json +1 -1
- package/package.json +2 -2
- package/webpack.config.js +5 -0
- package/dist/multi/app-a0b702400776f830d546.js +0 -2
- package/dist/single/app-49462b4b8e93dc8559d4.js +0 -2
- /package/dist/multi/{154.app-a0b702400776f830d546.js → 154.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{216.app-a0b702400776f830d546.js → 216.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{232.app-a0b702400776f830d546.js → 232.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{250.app-a0b702400776f830d546.js → 250.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{256.app-a0b702400776f830d546.js → 256.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{301.app-a0b702400776f830d546.js → 301.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{323.app-a0b702400776f830d546.js → 323.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{353.app-a0b702400776f830d546.js → 353.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{564.app-a0b702400776f830d546.js → 564.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{594.app-a0b702400776f830d546.js → 594.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{623.app-a0b702400776f830d546.js → 623.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{7.app-a0b702400776f830d546.js → 7.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{729.app-a0b702400776f830d546.js → 729.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{783.app-a0b702400776f830d546.js → 783.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{826.app-a0b702400776f830d546.js → 826.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{925.app-a0b702400776f830d546.js → 925.app-3066f0696365c03edbc7.js} +0 -0
- /package/dist/multi/{app-a0b702400776f830d546.js.LICENSE.txt → app-3066f0696365c03edbc7.js.LICENSE.txt} +0 -0
- /package/dist/single/{app-49462b4b8e93dc8559d4.js.LICENSE.txt → app-f456dd8072a33a483e3e.js.LICENSE.txt} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@allurereport/web-allure2",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.22",
|
|
4
4
|
"description": "The static files for Allure Classic Report",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"allure",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"IE 11"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@allurereport/web-commons": "3.0.0-beta.
|
|
34
|
+
"@allurereport/web-commons": "3.0.0-beta.22",
|
|
35
35
|
"@babel/runtime": "^7.27.6",
|
|
36
36
|
"b_": "^1.3.4",
|
|
37
37
|
"backbone": "^1.6.0",
|
package/webpack.config.js
CHANGED
|
@@ -102,6 +102,11 @@ export default (env, argv) => {
|
|
|
102
102
|
"@": join(__dirname, "src"),
|
|
103
103
|
},
|
|
104
104
|
},
|
|
105
|
+
externals: {
|
|
106
|
+
// Some packages use crypto from node:crypto, but webpack doesn't support it
|
|
107
|
+
// I think this does not end up in a bundle, so it is safe to do this
|
|
108
|
+
"node:crypto": "crypto",
|
|
109
|
+
},
|
|
105
110
|
};
|
|
106
111
|
|
|
107
112
|
if (SINGLE_FILE_MODE) {
|