@eslint-react/shared 3.0.0-next.16 → 3.0.0-next.17
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 -2
- package/dist/index.js +0 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -318,7 +318,6 @@ interface ESLintReactSettingsNormalized {
|
|
|
318
318
|
version: string;
|
|
319
319
|
importSource: string;
|
|
320
320
|
compilationMode: CompilationMode;
|
|
321
|
-
isCompilerEnabled: boolean;
|
|
322
321
|
polymorphicPropName: string | unit;
|
|
323
322
|
additionalStateHooks: RegExpLike;
|
|
324
323
|
}
|
|
@@ -386,7 +385,6 @@ declare const normalizeSettings: ({
|
|
|
386
385
|
}: ESLintReactSettings) => {
|
|
387
386
|
readonly importSource: string;
|
|
388
387
|
readonly compilationMode: "off" | "infer" | "annotation" | "syntax" | "all";
|
|
389
|
-
readonly isCompilerEnabled: boolean;
|
|
390
388
|
readonly polymorphicPropName: string;
|
|
391
389
|
readonly version: string;
|
|
392
390
|
readonly additionalStateHooks: RegExpLike;
|
package/dist/index.js
CHANGED
|
@@ -579,7 +579,6 @@ const normalizeSettings = ({ importSource = "react", compilationMode = "annotati
|
|
|
579
579
|
...rest,
|
|
580
580
|
importSource,
|
|
581
581
|
compilationMode,
|
|
582
|
-
isCompilerEnabled: compilationMode !== "off",
|
|
583
582
|
polymorphicPropName,
|
|
584
583
|
version: match(version).with(P.union(P.nullish, "", "detect"), () => getReactVersion("19.2.4")).otherwise(identity),
|
|
585
584
|
additionalStateHooks: toRegExp(additionalStateHooks)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/shared",
|
|
3
|
-
"version": "3.0.0-next.
|
|
3
|
+
"version": "3.0.0-next.17",
|
|
4
4
|
"description": "ESLint React's Shared constants and functions.",
|
|
5
5
|
"homepage": "https://github.com/Rel1cx/eslint-react",
|
|
6
6
|
"bugs": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@typescript-eslint/utils": "canary",
|
|
34
34
|
"ts-pattern": "^5.9.0",
|
|
35
35
|
"zod": "^3.25.0 || ^4.0.0",
|
|
36
|
-
"@eslint-react/eff": "3.0.0-next.
|
|
36
|
+
"@eslint-react/eff": "3.0.0-next.17"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@tsconfig/node24": "^24.0.4",
|