@trackunit/eslint-plugin-trackunit 0.5.6 → 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,45 @@
|
|
|
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
|
+
|
|
29
|
+
## 0.5.7 (2026-05-07)
|
|
30
|
+
|
|
31
|
+
### 🚀 Features
|
|
32
|
+
|
|
33
|
+
- **fleet-map:** V2 shell with lazy FleetMapReactMapPane and import boundaries ([482db7b8540](https://github.com/Trackunit/manager/commit/482db7b8540))
|
|
34
|
+
|
|
35
|
+
### 🧱 Updated Dependencies
|
|
36
|
+
|
|
37
|
+
- Updated shared-utils to 1.14.7
|
|
38
|
+
|
|
39
|
+
### ❤️ Thank You
|
|
40
|
+
|
|
41
|
+
- zoeyzou
|
|
42
|
+
|
|
1
43
|
## 0.5.6 (2026-05-07)
|
|
2
44
|
|
|
3
45
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -5,4 +5,5 @@ export { createSkipWhen } from "./lib/config-helpers/create-skip-when";
|
|
|
5
5
|
export { findMonorepoRoot } from "./lib/config/utils";
|
|
6
6
|
export type { MatchCriteria, ProjectMetadata } from "./lib/utils/nx-utils";
|
|
7
7
|
export { strictJsdocRules } from "./lib/config/fragments/jsdoc-rules";
|
|
8
|
+
export { restrictedImportRules } from "./lib/config/fragments/restricted-imports";
|
|
8
9
|
export { globals, jsdoc, nx, reactHooks, tsParser } from "./lib/config/plugins";
|
package/src/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.tsParser = exports.reactHooks = exports.nx = exports.jsdoc = exports.globals = exports.strictJsdocRules = exports.findMonorepoRoot = exports.createSkipWhen = exports.configs = void 0;
|
|
3
|
+
exports.tsParser = exports.reactHooks = exports.nx = exports.jsdoc = exports.globals = exports.restrictedImportRules = exports.strictJsdocRules = exports.findMonorepoRoot = exports.createSkipWhen = exports.configs = void 0;
|
|
4
4
|
const rules_map_1 = require("./lib/rules-map");
|
|
5
5
|
exports.default = rules_map_1.rulesMap;
|
|
6
6
|
var config_1 = require("./lib/config");
|
|
@@ -11,6 +11,8 @@ var utils_1 = require("./lib/config/utils");
|
|
|
11
11
|
Object.defineProperty(exports, "findMonorepoRoot", { enumerable: true, get: function () { return utils_1.findMonorepoRoot; } });
|
|
12
12
|
var jsdoc_rules_1 = require("./lib/config/fragments/jsdoc-rules");
|
|
13
13
|
Object.defineProperty(exports, "strictJsdocRules", { enumerable: true, get: function () { return jsdoc_rules_1.strictJsdocRules; } });
|
|
14
|
+
var restricted_imports_1 = require("./lib/config/fragments/restricted-imports");
|
|
15
|
+
Object.defineProperty(exports, "restrictedImportRules", { enumerable: true, get: function () { return restricted_imports_1.restrictedImportRules; } });
|
|
14
16
|
var plugins_1 = require("./lib/config/plugins");
|
|
15
17
|
Object.defineProperty(exports, "globals", { enumerable: true, get: function () { return plugins_1.globals; } });
|
|
16
18
|
Object.defineProperty(exports, "jsdoc", { enumerable: true, get: function () { return plugins_1.jsdoc; } });
|