@eslint-react/var 2.7.4-next.4 → 2.7.4-next.6
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 +1 -1
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ type AssignmentTarget = ReturnType<typeof findEnclosingAssignmentTarget>;
|
|
|
27
27
|
declare function findImportSource(name: string, initialScope: Scope): string | undefined;
|
|
28
28
|
//#endregion
|
|
29
29
|
//#region src/find-property.d.ts
|
|
30
|
-
declare function findProperty(name: string, properties: (TSESTree.Property | TSESTree.RestElement | TSESTree.SpreadElement)[], initialScope: Scope, seen?: Set<string>): typeof properties[number] | unit;
|
|
30
|
+
declare function findProperty(name: string, properties: (TSESTree.Property | TSESTree.RestElement | TSESTree.SpreadElement)[], initialScope: Scope, seen?: Set<string>): (typeof properties)[number] | unit;
|
|
31
31
|
//#endregion
|
|
32
32
|
//#region src/get-child-scopes.d.ts
|
|
33
33
|
declare function getChildScopes(scope: Scope): readonly Scope[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/var",
|
|
3
|
-
"version": "2.7.4-next.
|
|
3
|
+
"version": "2.7.4-next.6",
|
|
4
4
|
"description": "ESLint React's TSESTree AST utility module for static analysis of variables.",
|
|
5
5
|
"homepage": "https://github.com/Rel1cx/eslint-react",
|
|
6
6
|
"bugs": {
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"@typescript-eslint/types": "^8.53.1",
|
|
35
35
|
"@typescript-eslint/utils": "^8.53.1",
|
|
36
36
|
"ts-pattern": "^5.9.0",
|
|
37
|
-
"@eslint-react/ast": "2.7.4-next.
|
|
38
|
-
"@eslint-react/eff": "2.7.4-next.
|
|
39
|
-
"@eslint-react/shared": "2.7.4-next.
|
|
37
|
+
"@eslint-react/ast": "2.7.4-next.6",
|
|
38
|
+
"@eslint-react/eff": "2.7.4-next.6",
|
|
39
|
+
"@eslint-react/shared": "2.7.4-next.6"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"tsdown": "^0.20.
|
|
42
|
+
"tsdown": "^0.20.1",
|
|
43
43
|
"@local/configs": "0.0.0"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|