@trackunit/eslint-plugin-trackunit 0.6.89 → 0.6.90-alpha-08e1d7f469e.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 +0 -12
- package/package.json +1 -1
- package/src/lib/config/plugins.d.ts +1 -1
- package/src/lib/config/plugins.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,3 @@
|
|
|
1
|
-
## 0.6.89 (2026-08-03)
|
|
2
|
-
|
|
3
|
-
### 🧱 Updated Dependencies
|
|
4
|
-
|
|
5
|
-
- Updated shared-utils to 1.15.89
|
|
6
|
-
|
|
7
|
-
## 0.6.88 (2026-08-03)
|
|
8
|
-
|
|
9
|
-
### 🧱 Updated Dependencies
|
|
10
|
-
|
|
11
|
-
- Updated shared-utils to 1.15.88
|
|
12
|
-
|
|
13
1
|
## 0.6.87 (2026-08-03)
|
|
14
2
|
|
|
15
3
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -17,7 +17,7 @@ import * as jsdoc from "eslint-plugin-jsdoc";
|
|
|
17
17
|
import * as noNull from "eslint-plugin-no-null";
|
|
18
18
|
import * as react from "eslint-plugin-react";
|
|
19
19
|
import * as reactHooks from "eslint-plugin-react-hooks";
|
|
20
|
-
import
|
|
20
|
+
import testingLibrary from "eslint-plugin-testing-library";
|
|
21
21
|
import * as globals from "globals";
|
|
22
22
|
import * as jsoncParser from "jsonc-eslint-parser";
|
|
23
23
|
export declare const localRulesPlugin: {
|
|
@@ -31,8 +31,8 @@ const react = tslib_1.__importStar(require("eslint-plugin-react"));
|
|
|
31
31
|
exports.react = react;
|
|
32
32
|
const reactHooks = tslib_1.__importStar(require("eslint-plugin-react-hooks"));
|
|
33
33
|
exports.reactHooks = reactHooks;
|
|
34
|
-
const
|
|
35
|
-
exports.testingLibrary =
|
|
34
|
+
const eslint_plugin_testing_library_1 = tslib_1.__importDefault(require("eslint-plugin-testing-library"));
|
|
35
|
+
exports.testingLibrary = eslint_plugin_testing_library_1.default;
|
|
36
36
|
const globals = tslib_1.__importStar(require("globals"));
|
|
37
37
|
exports.globals = globals;
|
|
38
38
|
const jsoncParser = tslib_1.__importStar(require("jsonc-eslint-parser"));
|