pagean 15.6.2 → 15.6.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/lib/link-utilities.js +1 -1
- package/lib/report-template.handlebars +4 -0
- package/package.json +11 -11
package/lib/link-utilities.js
CHANGED
|
@@ -208,7 +208,7 @@ const createLinkChecker = () => {
|
|
|
208
208
|
*/
|
|
209
209
|
// eslint-disable-next-line complexity -- Allow low limit
|
|
210
210
|
checkLink: async (context, link) => {
|
|
211
|
-
let status
|
|
211
|
+
let status;
|
|
212
212
|
try {
|
|
213
213
|
// Check all page links first since normalize removes the hash
|
|
214
214
|
if (link.startsWith(`${context.page.url()}#`)) {
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
<title>Pagean Results</title>
|
|
6
6
|
<style>
|
|
7
7
|
:root {
|
|
8
|
+
/* stylelint-disable order/custom-properties-alphabetical-order -- group by type */
|
|
9
|
+
|
|
8
10
|
/* Default colors */
|
|
9
11
|
--color-text-default: #333333;
|
|
10
12
|
--color-background-data-hover: rgb(255 255 255 / 10%);
|
|
@@ -20,6 +22,8 @@
|
|
|
20
22
|
--color-text-warning: #7e6902;
|
|
21
23
|
--color-background-page-error: #f6d5c0;
|
|
22
24
|
--color-text-page-error: #994715;
|
|
25
|
+
|
|
26
|
+
/* stylelint-enable order/custom-properties-alphabetical-order -- group by type */
|
|
23
27
|
}
|
|
24
28
|
|
|
25
29
|
html {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pagean",
|
|
3
|
-
"version": "15.6.
|
|
3
|
+
"version": "15.6.4",
|
|
4
4
|
"description": "Pagean is a web page analysis tool designed to automate tests requiring web pages to be loaded in a browser window (e.g. horizontal scrollbar, console errors)",
|
|
5
5
|
"bin": {
|
|
6
6
|
"pagean": "bin/pagean.js",
|
|
@@ -56,32 +56,32 @@
|
|
|
56
56
|
},
|
|
57
57
|
"homepage": "https://gitlab.com/gitlab-ci-utils/pagean",
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aarongoldenthal/eslint-config-standard": "
|
|
60
|
-
"@aarongoldenthal/stylelint-config-standard": "
|
|
61
|
-
"@vitest/coverage-v8": "4.1.
|
|
59
|
+
"@aarongoldenthal/eslint-config-standard": "45.0.0",
|
|
60
|
+
"@aarongoldenthal/stylelint-config-standard": "22.0.0",
|
|
61
|
+
"@vitest/coverage-v8": "4.1.2",
|
|
62
62
|
"bin-tester": "7.0.1",
|
|
63
63
|
"c8": "11.0.0",
|
|
64
|
-
"eslint": "
|
|
64
|
+
"eslint": "10.1.0",
|
|
65
65
|
"globals": "17.4.0",
|
|
66
|
-
"markdownlint-cli2": "0.
|
|
66
|
+
"markdownlint-cli2": "0.22.0",
|
|
67
67
|
"nyc": "18.0.0",
|
|
68
68
|
"prettier": "3.8.1",
|
|
69
|
-
"stylelint": "
|
|
70
|
-
"vitest": "4.1.
|
|
69
|
+
"stylelint": "17.6.0",
|
|
70
|
+
"vitest": "4.1.2"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"ajv": "8.18.0",
|
|
74
74
|
"ajv-errors": "3.0.0",
|
|
75
|
-
"axios": "1.
|
|
75
|
+
"axios": "1.14.0",
|
|
76
76
|
"ci-logger": "8.0.1",
|
|
77
77
|
"commander": "14.0.3",
|
|
78
78
|
"cssesc": "3.0.0",
|
|
79
|
-
"handlebars": "4.7.
|
|
79
|
+
"handlebars": "4.7.9",
|
|
80
80
|
"htmlhint": "1.9.2",
|
|
81
81
|
"kleur": "4.1.5",
|
|
82
82
|
"normalize-url": "9.0.0",
|
|
83
83
|
"protocolify": "4.0.0",
|
|
84
|
-
"puppeteer": "24.
|
|
84
|
+
"puppeteer": "24.40.0",
|
|
85
85
|
"xml2js": "0.6.2"
|
|
86
86
|
}
|
|
87
87
|
}
|