@html-validate/plugin-template 1.1.2 → 1.1.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/files/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @html-validate/plugin-template changelog
|
|
2
2
|
|
|
3
|
+
## 1.1.4 (2026-08-16)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- use commonjs configuration for html-validate v8 compatibility ([085470c](https://gitlab.com/html-validate/plugin-template/commit/085470c582ce7328e48208d7eae1a50774b0aa06))
|
|
8
|
+
|
|
9
|
+
## 1.1.3 (2026-08-16)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- **deps:** update dependency @tsconfig/node22 to v22.0.6 ([9c724b4](https://gitlab.com/html-validate/plugin-template/commit/9c724b4294beba279c6c7b2cb12f91a62b00ce97))
|
|
14
|
+
|
|
3
15
|
## 1.1.2 (2026-08-15)
|
|
4
16
|
|
|
5
17
|
### Bug Fixes
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/* This file is managed by "@html-validate/plugin-template". Changes will be overwritten */
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
const { defineConfig } = require("html-validate");
|
|
4
|
+
const Plugin = require("./dist/cjs/index.cjs");
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
module.exports = defineConfig({
|
|
7
7
|
plugins: [Plugin],
|
|
8
8
|
extends: ["html-validate:recommended", `${Plugin.name}:recommended`],
|
|
9
9
|
elements: ["html5"],
|
package/files/package.json
CHANGED
|
@@ -69,11 +69,11 @@
|
|
|
69
69
|
"@html-validate/eslint-config-typescript": "9.17.6",
|
|
70
70
|
"@html-validate/eslint-config-typescript-typeinfo": "9.17.6",
|
|
71
71
|
"@html-validate/jest-config": "3.18.2",
|
|
72
|
-
"@html-validate/plugin-template": "1.1.
|
|
72
|
+
"@html-validate/plugin-template": "1.1.4",
|
|
73
73
|
"@html-validate/prettier-config": "4.1.11",
|
|
74
74
|
"@html-validate/release-scripts": "7.6.0",
|
|
75
75
|
"@jest/globals": "30.4.1",
|
|
76
|
-
"@tsconfig/node22": "22.0.
|
|
76
|
+
"@tsconfig/node22": "22.0.6",
|
|
77
77
|
"@tsconfig/strictest": "2.0.8",
|
|
78
78
|
"@types/estree": "1.0.9",
|
|
79
79
|
"@types/node": "22.20.1",
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
},
|
|
106
106
|
"cloneman": {
|
|
107
107
|
"template": "@html-validate/plugin-template",
|
|
108
|
-
"version": "1.1.
|
|
108
|
+
"version": "1.1.4"
|
|
109
109
|
},
|
|
110
110
|
"externalDependencies": [
|
|
111
111
|
"@html-validate/plugin-utils"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@html-validate/plugin-template",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "cloneman template for html-validate plugins",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cloneman",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
".editorconfig",
|
|
26
26
|
".gitignore",
|
|
27
27
|
".gitlab-ci.yml",
|
|
28
|
-
".htmlvalidate.
|
|
28
|
+
".htmlvalidate.cjs",
|
|
29
29
|
".npmrc",
|
|
30
30
|
".prettierignore",
|
|
31
31
|
"CHANGELOG.md",
|