@eslint-react/var 2.7.3-beta.2 → 2.7.3-beta.4

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +7 -7
package/dist/index.d.ts CHANGED
@@ -15,7 +15,7 @@ declare function findAssignmentTarget(node: TSESTree.Node | unit, prev?: TSESTre
15
15
  declare function findImportSource(name: string, initialScope: Scope): string | undefined;
16
16
  //#endregion
17
17
  //#region src/find-property.d.ts
18
- declare function findProperty(name: string, properties: (TSESTree.Property | TSESTree.RestElement | TSESTree.SpreadElement)[], initialScope: Scope, seen?: Set<string>): (typeof properties)[number] | unit;
18
+ declare function findProperty(name: string, properties: (TSESTree.Property | TSESTree.RestElement | TSESTree.SpreadElement)[], initialScope: Scope, seen?: Set<string>): typeof properties[number] | unit;
19
19
  //#endregion
20
20
  //#region src/get-child-scopes.d.ts
21
21
  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.3-beta.2",
3
+ "version": "2.7.3-beta.4",
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": {
@@ -30,15 +30,15 @@
30
30
  "./package.json"
31
31
  ],
32
32
  "dependencies": {
33
- "@typescript-eslint/scope-manager": "^8.53.0",
34
- "@typescript-eslint/types": "^8.53.0",
35
- "@typescript-eslint/utils": "^8.53.0",
33
+ "@typescript-eslint/scope-manager": "^8.53.1",
34
+ "@typescript-eslint/types": "^8.53.1",
35
+ "@typescript-eslint/utils": "^8.53.1",
36
36
  "ts-pattern": "^5.9.0",
37
- "@eslint-react/ast": "2.7.3-beta.2",
38
- "@eslint-react/eff": "2.7.3-beta.2"
37
+ "@eslint-react/ast": "2.7.3-beta.4",
38
+ "@eslint-react/eff": "2.7.3-beta.4"
39
39
  },
40
40
  "devDependencies": {
41
- "tsdown": "^0.20.0-beta.3",
41
+ "tsdown": "^0.20.0-beta.4",
42
42
  "@local/configs": "0.0.0"
43
43
  },
44
44
  "peerDependencies": {