@eslint-react/core 2.4.1-next.1 → 2.4.1-next.11
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 +3 -3
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -86,13 +86,13 @@ type ComponentFlag = bigint;
|
|
|
86
86
|
declare const ComponentFlag: {
|
|
87
87
|
/** No flags set */
|
|
88
88
|
None: bigint;
|
|
89
|
-
/** Indicates the component is a pure component (e.g
|
|
89
|
+
/** Indicates the component is a pure component (e.g., extends PureComponent) */
|
|
90
90
|
PureComponent: bigint;
|
|
91
91
|
/** Indicates the component creates elements using `createElement` instead of JSX */
|
|
92
92
|
CreateElement: bigint;
|
|
93
|
-
/** Indicates the component is memoized (e.g
|
|
93
|
+
/** Indicates the component is memoized (e.g., React.memo) */
|
|
94
94
|
Memo: bigint;
|
|
95
|
-
/** Indicates the component forwards a ref (e.g
|
|
95
|
+
/** Indicates the component forwards a ref (e.g., React.forwardRef) */
|
|
96
96
|
ForwardRef: bigint;
|
|
97
97
|
/** Indicates the component is asynchronous */
|
|
98
98
|
Async: bigint;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/core",
|
|
3
|
-
"version": "2.4.1-next.
|
|
3
|
+
"version": "2.4.1-next.11",
|
|
4
4
|
"description": "ESLint React's ESLint utility module for static analysis of React core APIs and patterns.",
|
|
5
5
|
"homepage": "https://github.com/Rel1cx/eslint-react",
|
|
6
6
|
"bugs": {
|
|
@@ -30,18 +30,18 @@
|
|
|
30
30
|
"./package.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@typescript-eslint/scope-manager": "^8.
|
|
34
|
-
"@typescript-eslint/types": "^8.
|
|
35
|
-
"@typescript-eslint/utils": "^8.
|
|
33
|
+
"@typescript-eslint/scope-manager": "^8.51.0",
|
|
34
|
+
"@typescript-eslint/types": "^8.51.0",
|
|
35
|
+
"@typescript-eslint/utils": "^8.51.0",
|
|
36
36
|
"birecord": "^0.1.1",
|
|
37
37
|
"ts-pattern": "^5.9.0",
|
|
38
|
-
"@eslint-react/
|
|
39
|
-
"@eslint-react/
|
|
40
|
-
"@eslint-react/var": "2.4.1-next.
|
|
41
|
-
"@eslint-react/
|
|
38
|
+
"@eslint-react/eff": "2.4.1-next.11",
|
|
39
|
+
"@eslint-react/shared": "2.4.1-next.11",
|
|
40
|
+
"@eslint-react/var": "2.4.1-next.11",
|
|
41
|
+
"@eslint-react/ast": "2.4.1-next.11"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"tsdown": "^0.18.
|
|
44
|
+
"tsdown": "^0.18.3",
|
|
45
45
|
"@local/configs": "0.0.0"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|