@db-ux/core-eslint-plugin 4.7.2 → 4.8.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -2
  2. package/package.json +17 -15
package/CHANGELOG.md CHANGED
@@ -1,9 +1,16 @@
1
1
  # @db-ux/core-eslint-plugin
2
2
 
3
- ## 4.7.2
3
+ ## 4.8.0
4
+
5
+ _version bump_
6
+
7
+ ## 4.7.3
4
8
 
5
9
  _version bump_
6
10
 
11
+ ## 4.7.2
12
+
13
+ _version bump_
7
14
 
8
15
  ## 4.7.1
9
16
 
@@ -14,7 +21,7 @@ _version bump_
14
21
  ### Patch Changes
15
22
 
16
23
  - fix(`DBNotification`): `close-button-text-required` rule now only requires `closeButtonText` when `closeable` attribute is set. - [see commit 9ae9216](https://github.com/db-ux-design-system/core-web/commit/9ae92161a6d07c7a7ab80a4af31777a4d35d09be):
17
- - refactor(`ESLint`): optimize parsing of multiple Angular components.
24
+ - refactor(`ESLint`): optimize parsing of multiple Angular components.
18
25
 
19
26
  ## 4.6.1
20
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/core-eslint-plugin",
3
- "version": "4.7.2",
3
+ "version": "4.8.0",
4
4
  "type": "module",
5
5
  "description": "ESLint plugin for DB UX Design System components",
6
6
  "repository": {
@@ -23,29 +23,21 @@
23
23
  "eslint-plugin",
24
24
  "db-ux"
25
25
  ],
26
- "scripts": {
27
- "build": "tsc",
28
- "copy-output": "npm-run-all copy:*",
29
- "copy:changelog": "cpr CHANGELOG.md ../../build-outputs/eslint-plugin/CHANGELOG.md --overwrite",
30
- "copy:outputs": "cpr build ../../build-outputs/eslint-plugin/build -o",
31
- "copy:package.json": "cpr package.json ../../build-outputs/eslint-plugin/package.json -o",
32
- "copy:readme": "cpr README.md ../../build-outputs/eslint-plugin/README.md -o",
33
- "test": "vitest run --config vitest.config.ts",
34
- "test:update": "vitest run --config vitest.config.ts --update"
35
- },
36
26
  "peerDependencies": {
37
27
  "eslint": ">=9.0.0"
38
28
  },
39
29
  "dependencies": {
40
30
  "@angular-eslint/utils": "21.3.1",
41
- "@typescript-eslint/utils": "^8.59.0"
31
+ "@typescript-eslint/utils": "^8.59.2"
42
32
  },
43
33
  "devDependencies": {
44
34
  "@angular-eslint/bundled-angular-compiler": "21.3.1",
45
35
  "@angular-eslint/template-parser": "21.3.1",
46
36
  "@angular-eslint/test-utils": "21.3.1",
47
- "@typescript-eslint/parser": "8.59.0",
48
- "@typescript-eslint/rule-tester": "8.59.0",
37
+ "@typescript-eslint/parser": "8.59.2",
38
+ "@typescript-eslint/rule-tester": "8.59.2",
39
+ "cpr": "3.0.1",
40
+ "npm-run-all2": "8.0.4",
49
41
  "typescript": "5.9.3",
50
42
  "vitest": "4.1.5",
51
43
  "vue-eslint-parser": "10.4.0"
@@ -53,5 +45,15 @@
53
45
  "publishConfig": {
54
46
  "registry": "https://registry.npmjs.org/",
55
47
  "access": "public"
48
+ },
49
+ "scripts": {
50
+ "build": "tsc",
51
+ "copy-output": "run-p copy:*",
52
+ "copy:changelog": "cpr CHANGELOG.md ../../build-outputs/eslint-plugin/CHANGELOG.md --overwrite",
53
+ "copy:outputs": "cpr build ../../build-outputs/eslint-plugin/build -o",
54
+ "copy:package.json": "cpr package.json ../../build-outputs/eslint-plugin/package.json -o",
55
+ "copy:readme": "cpr README.md ../../build-outputs/eslint-plugin/README.md -o",
56
+ "test": "vitest run --config vitest.config.ts",
57
+ "test:update": "vitest run --config vitest.config.ts --update"
56
58
  }
57
- }
59
+ }