@html-validate/plugin-template 1.1.0 → 1.1.1

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.
@@ -1,5 +1,11 @@
1
1
  # @html-validate/plugin-template changelog
2
2
 
3
+ ## 1.1.1 (2026-08-14)
4
+
5
+ ### Bug Fixes
6
+
7
+ - eslint.config.mjs must be unmanaged when the dependency is ([737267d](https://gitlab.com/html-validate/plugin-template/commit/737267d4276e509b7121f3656265ca2757b12c40))
8
+
3
9
  ## 1.1.0 (2026-07-07)
4
10
 
5
11
  ### Features
@@ -4,34 +4,14 @@
4
4
  import defaultConfig from "@html-validate/eslint-config";
5
5
  import jestConfig from "@html-validate/eslint-config-jest";
6
6
  import typescriptConfig from "@html-validate/eslint-config-typescript";
7
- import typescriptTypeinfoConfig from "@html-validate/eslint-config-typescript-typeinfo";
7
+ import typeinfoConfig from "@html-validate/eslint-config-typescript-typeinfo";
8
8
 
9
9
  export default [
10
- ...defaultConfig({ type: "commonjs" }),
10
+ ...defaultConfig({
11
+ type: "commonjs",
12
+ }),
11
13
 
12
- {
13
- name: "@html-validate/eslint-config-typescript",
14
- files: ["**/*.{ts,cts,mts}"],
15
- ...typescriptConfig,
16
- },
17
-
18
- {
19
- name: "@html-validate/eslint-config-typeinfo",
20
- files: ["src/**/*.{ts,cts,mts}"],
21
- ignores: ["src/**/*.spec.ts"],
22
- languageOptions: {
23
- parserOptions: {
24
- tsconfigRootDir: import.meta.dirname,
25
- projectService: true,
26
- },
27
- },
28
- ...typescriptTypeinfoConfig,
29
- },
30
-
31
- {
32
- name: "@html-validate/eslint-config-jest",
33
- files: ["**/*.spec.[jt]s"],
34
- ignores: ["cypress/**", "tests/e2e/**"],
35
- ...jestConfig,
36
- },
14
+ typescriptConfig(),
15
+ typeinfoConfig(import.meta.dirname),
16
+ jestConfig(),
37
17
  ];
@@ -62,33 +62,34 @@
62
62
  "@html-validate/plugin-utils": "^4.0.0"
63
63
  },
64
64
  "devDependencies": {
65
- "@arethetypeswrong/cli": "0.18.4",
66
- "@html-validate/commitlint-config": "4.1.2",
67
- "@html-validate/eslint-config": "9.11.0",
68
- "@html-validate/eslint-config-jest": "9.11.0",
69
- "@html-validate/eslint-config-typescript": "9.11.0",
70
- "@html-validate/eslint-config-typescript-typeinfo": "9.11.0",
65
+ "@arethetypeswrong/cli": "0.18.5",
66
+ "@html-validate/commitlint-config": "4.3.3",
67
+ "@html-validate/eslint-config": "9.17.3",
68
+ "@html-validate/eslint-config-jest": "9.17.5",
69
+ "@html-validate/eslint-config-typescript": "9.17.4",
70
+ "@html-validate/eslint-config-typescript-typeinfo": "9.17.4",
71
71
  "@html-validate/jest-config": "3.18.2",
72
- "@html-validate/plugin-template": "1.1.0",
73
- "@html-validate/prettier-config": "4.1.5",
74
- "@html-validate/release-scripts": "7.3.1",
72
+ "@html-validate/plugin-template": "1.1.1",
73
+ "@html-validate/prettier-config": "4.1.11",
74
+ "@html-validate/release-scripts": "7.6.0",
75
75
  "@jest/globals": "30.4.1",
76
76
  "@tsconfig/node22": "22.0.5",
77
77
  "@tsconfig/strictest": "2.0.8",
78
78
  "@types/estree": "1.0.9",
79
- "@types/node": "22.20.0",
80
- "@types/semver": "7.7.1",
81
- "cloneman": "1.19.1",
79
+ "@types/node": "22.20.1",
80
+ "@types/semver": "7.8.0",
81
+ "@typescript/native": "npm:typescript@7.0.2",
82
+ "cloneman": "1.19.5",
82
83
  "dts-bundle-generator": "9.5.1",
83
- "esbuild": "0.28.1",
84
- "html-validate": "11.5.5",
84
+ "esbuild": "0.28.2",
85
+ "html-validate": "11.6.2",
85
86
  "husky": "9.1.7",
86
87
  "jest": "30.4.2",
87
88
  "jest-environment-jsdom": "30.4.1",
88
- "npm-pkg-lint": "5.1.10",
89
+ "npm-pkg-lint": "5.2.2",
89
90
  "semver": "7.8.5",
90
- "ts-jest": "29.4.11",
91
- "typescript": "6.0.3"
91
+ "ts-jest": "29.4.12",
92
+ "typescript": "npm:@typescript/typescript6@6.0.2"
92
93
  },
93
94
  "peerDependencies": {
94
95
  "html-validate": "^8.21.0 || ^9.0.0 || ^10.0.0 || ^11.0.0"
@@ -104,7 +105,7 @@
104
105
  },
105
106
  "cloneman": {
106
107
  "template": "@html-validate/plugin-template",
107
- "version": "1.1.0"
108
+ "version": "1.1.1"
108
109
  },
109
110
  "externalDependencies": [
110
111
  "@html-validate/plugin-utils"
@@ -14,6 +14,7 @@
14
14
  "@types/estree",
15
15
  "@types/node",
16
16
  "@types/semver",
17
+ "@typescript/native",
17
18
  "cloneman",
18
19
  "dts-bundle-generator",
19
20
  "esbuild",
@@ -11,7 +11,7 @@ const tagNames = Object.keys(metadata).filter((it) => it !== "*");
11
11
  const htmlvalidate = new HtmlValidate({
12
12
  root: true,
13
13
  plugins: [Plugin],
14
- extends: ["html-validate:recommended", `${Plugin.name}:recommended`],
14
+ extends: ["html-validate:recommended", `${String(Plugin.name)}:recommended`],
15
15
  elements: ["html5"],
16
16
  rules: {
17
17
  "no-unknown-attributes": "error",
@@ -1,5 +1,5 @@
1
1
  import { beforeAll, describe, expect, it } from "@jest/globals";
2
- import { ConfigData, FileSystemConfigLoader, HtmlValidate } from "html-validate";
2
+ import { type ConfigData, FileSystemConfigLoader, HtmlValidate } from "html-validate";
3
3
  import "html-validate/jest";
4
4
  import Plugin from "..";
5
5
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@html-validate/plugin-template",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "cloneman template for html-validate plugins",
5
5
  "keywords": [
6
6
  "cloneman",
@@ -62,7 +62,6 @@
62
62
  ".prettierignore",
63
63
  "LICENSE",
64
64
  "build.mjs",
65
- "eslint.config.mjs",
66
65
  "package.json",
67
66
  "renovate.json",
68
67
  "tsconfig.cjs.json",