@trackunit/eslint-plugin-trackunit 0.5.7 → 0.6.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,37 @@
1
+ ## 0.6.1 (2026-05-12)
2
+
3
+ ### 🧱 Updated Dependencies
4
+
5
+ - Updated shared-utils to 1.15.1
6
+
7
+ ## 0.6.0 (2026-05-10)
8
+
9
+ ### 🚀 Features
10
+
11
+ - **vitest:** use istanbul as the coverage provider ([80313642422](https://github.com/Trackunit/manager/commit/80313642422))
12
+ - **vitest-config:** add coverage reporting for multiple apps and libraries ([5cf4844dfaa](https://github.com/Trackunit/manager/commit/5cf4844dfaa))
13
+
14
+ ### 🧱 Updated Dependencies
15
+
16
+ - Updated shared-utils to 1.15.0
17
+
18
+ ### ❤️ Thank You
19
+
20
+ - Cursor @cursoragent
21
+ - Mikkel Thorbjørn Andersen
22
+
23
+ ## 0.5.9 (2026-05-07)
24
+
25
+ ### 🧱 Updated Dependencies
26
+
27
+ - Updated shared-utils to 1.14.9
28
+
29
+ ## 0.5.8 (2026-05-07)
30
+
31
+ ### 🧱 Updated Dependencies
32
+
33
+ - Updated shared-utils to 1.14.8
34
+
1
35
  ## 0.5.7 (2026-05-07)
2
36
 
3
37
  ### 🚀 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.1",
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}",