@trackunit/eslint-plugin-trackunit 0.5.7 → 0.6.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,31 @@
1
+ ## 0.6.0 (2026-05-10)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **vitest:** use istanbul as the coverage provider ([80313642422](https://github.com/Trackunit/manager/commit/80313642422))
6
+ - **vitest-config:** add coverage reporting for multiple apps and libraries ([5cf4844dfaa](https://github.com/Trackunit/manager/commit/5cf4844dfaa))
7
+
8
+ ### 🧱 Updated Dependencies
9
+
10
+ - Updated shared-utils to 1.15.0
11
+
12
+ ### ❤️ Thank You
13
+
14
+ - Cursor @cursoragent
15
+ - Mikkel Thorbjørn Andersen
16
+
17
+ ## 0.5.9 (2026-05-07)
18
+
19
+ ### 🧱 Updated Dependencies
20
+
21
+ - Updated shared-utils to 1.14.9
22
+
23
+ ## 0.5.8 (2026-05-07)
24
+
25
+ ### 🧱 Updated Dependencies
26
+
27
+ - Updated shared-utils to 1.14.8
28
+
1
29
  ## 0.5.7 (2026-05-07)
2
30
 
3
31
  ### 🚀 Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/eslint-plugin-trackunit",
3
- "version": "0.5.7",
3
+ "version": "0.6.0",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
@@ -9,6 +9,8 @@ exports.globalIgnores = {
9
9
  "**/webpack.config.js",
10
10
  "**/jest.config.*",
11
11
  "**/jest.setup.*",
12
+ "**/vite*.config.*",
13
+ "**/vite*.setup.*",
12
14
  "**/src/**/generated/**/*.*",
13
15
  "**/src/**/generated.*",
14
16
  "**/dist/**/*",
@@ -28,6 +28,8 @@ const createImportExtraneousDependenciesConfig = (rootDir) => (0, create_skip_wh
28
28
  "**/*.spec.{ts,tsx}",
29
29
  "**/*.test.{ts,tsx}",
30
30
  "**/jest.setup.*",
31
+ "**/vite.setup.*",
32
+ "**/vite.config.ts",
31
33
  "**/test/**",
32
34
  "**/tests/**",
33
35
  "**/testing/**",
@@ -48,6 +48,8 @@ exports.base = [
48
48
  "**/testing/**",
49
49
  "**/test-setup/**",
50
50
  "**/test-utils/**",
51
+ "**/vite.setup.*",
52
+ "**/vite.config.ts",
51
53
  "**/__tests__/**",
52
54
  "**/__mocks__/**",
53
55
  "**/mocks.{ts,tsx}",