eslint-plugin-react-debug 2.0.0-next.190 → 2.0.0-next.192
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/dist/index.d.ts +0 -4
- package/dist/index.js +3 -6
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -9,10 +9,6 @@ declare const _default: {
|
|
|
9
9
|
rules?: Record<string, _eslint_react_kit0.RuleConfig>;
|
|
10
10
|
settings?: _eslint_react_kit0.SettingsConfig;
|
|
11
11
|
};
|
|
12
|
-
"all-legacy": {
|
|
13
|
-
plugins: string[];
|
|
14
|
-
rules: Record<string, _eslint_react_kit0.RuleConfig<unknown[]>> | undefined;
|
|
15
|
-
};
|
|
16
12
|
};
|
|
17
13
|
meta: {
|
|
18
14
|
name: string;
|
package/dist/index.js
CHANGED
|
@@ -38,7 +38,7 @@ const settings = { "react-x": DEFAULT_ESLINT_REACT_SETTINGS };
|
|
|
38
38
|
//#endregion
|
|
39
39
|
//#region package.json
|
|
40
40
|
var name = "eslint-plugin-react-debug";
|
|
41
|
-
var version = "2.0.0-next.
|
|
41
|
+
var version = "2.0.0-next.192";
|
|
42
42
|
|
|
43
43
|
//#endregion
|
|
44
44
|
//#region src/utils/create-rule.ts
|
|
@@ -278,13 +278,10 @@ const plugin = {
|
|
|
278
278
|
|
|
279
279
|
//#endregion
|
|
280
280
|
//#region src/index.ts
|
|
281
|
-
const { toFlatConfig
|
|
281
|
+
const { toFlatConfig } = getConfigAdapters("react-debug", plugin);
|
|
282
282
|
var src_default = {
|
|
283
283
|
...plugin,
|
|
284
|
-
configs: {
|
|
285
|
-
["all"]: toFlatConfig(all_exports),
|
|
286
|
-
["all-legacy"]: toLegacyConfig(all_exports)
|
|
287
|
-
}
|
|
284
|
+
configs: { ["all"]: toFlatConfig(all_exports) }
|
|
288
285
|
};
|
|
289
286
|
|
|
290
287
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-react-debug",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.192",
|
|
4
4
|
"description": "ESLint React's ESLint plugin for debugging related rules.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -35,18 +35,18 @@
|
|
|
35
35
|
"./package.json"
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@typescript-eslint/scope-manager": "^8.44.
|
|
39
|
-
"@typescript-eslint/type-utils": "^8.44.
|
|
40
|
-
"@typescript-eslint/types": "^8.44.
|
|
41
|
-
"@typescript-eslint/utils": "^8.44.
|
|
38
|
+
"@typescript-eslint/scope-manager": "^8.44.1",
|
|
39
|
+
"@typescript-eslint/type-utils": "^8.44.1",
|
|
40
|
+
"@typescript-eslint/types": "^8.44.1",
|
|
41
|
+
"@typescript-eslint/utils": "^8.44.1",
|
|
42
42
|
"string-ts": "^2.2.1",
|
|
43
43
|
"ts-pattern": "^5.8.0",
|
|
44
|
-
"@eslint-react/ast": "2.0.0-next.
|
|
45
|
-
"@eslint-react/core": "2.0.0-next.
|
|
46
|
-
"@eslint-react/
|
|
47
|
-
"@eslint-react/
|
|
48
|
-
"@eslint-react/shared": "2.0.0-next.
|
|
49
|
-
"@eslint-react/var": "2.0.0-next.
|
|
44
|
+
"@eslint-react/ast": "2.0.0-next.192",
|
|
45
|
+
"@eslint-react/core": "2.0.0-next.192",
|
|
46
|
+
"@eslint-react/eff": "2.0.0-next.192",
|
|
47
|
+
"@eslint-react/kit": "2.0.0-next.192",
|
|
48
|
+
"@eslint-react/shared": "2.0.0-next.192",
|
|
49
|
+
"@eslint-react/var": "2.0.0-next.192"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/react": "^19.1.13",
|