@trackunit/eslint-plugin-trackunit 0.5.6 → 0.5.7

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,17 @@
1
+ ## 0.5.7 (2026-05-07)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **fleet-map:** V2 shell with lazy FleetMapReactMapPane and import boundaries ([482db7b8540](https://github.com/Trackunit/manager/commit/482db7b8540))
6
+
7
+ ### 🧱 Updated Dependencies
8
+
9
+ - Updated shared-utils to 1.14.7
10
+
11
+ ### ❤️ Thank You
12
+
13
+ - zoeyzou
14
+
1
15
  ## 0.5.6 (2026-05-07)
2
16
 
3
17
  ### 🧱 Updated Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/eslint-plugin-trackunit",
3
- "version": "0.5.6",
3
+ "version": "0.5.7",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
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; } });