eslint-plugin-react-rsc 3.0.0 → 4.0.0-beta.0

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 (3) hide show
  1. package/README.md +2 -2
  2. package/dist/index.js +1 -1
  3. package/package.json +10 -10
package/README.md CHANGED
@@ -11,7 +11,7 @@ npm install --save-dev eslint-plugin-react-rsc
11
11
 
12
12
  ```ts
13
13
  import js from "@eslint/js";
14
- import rsc from "eslint-plugin-react-rsc";
14
+ import reactRsc from "eslint-plugin-react-rsc";
15
15
  import { defineConfig } from "eslint/config";
16
16
  import tseslint from "typescript-eslint";
17
17
 
@@ -22,7 +22,7 @@ export default defineConfig(
22
22
  js.configs.recommended,
23
23
  tseslint.configs.recommended,
24
24
  // Add configs from eslint-plugin-react-rsc
25
- rsc.configs.recommended,
25
+ reactRsc.configs.recommended,
26
26
  ],
27
27
  rules: {
28
28
  // Put rules you want to override here
package/dist/index.js CHANGED
@@ -32,7 +32,7 @@ const rules$4 = { "react-rsc/function-definition": "off" };
32
32
  //#endregion
33
33
  //#region package.json
34
34
  var name$4 = "eslint-plugin-react-rsc";
35
- var version = "3.0.0";
35
+ var version = "4.0.0-beta.0";
36
36
 
37
37
  //#endregion
38
38
  //#region src/utils/create-rule.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-react-rsc",
3
- "version": "3.0.0",
3
+ "version": "4.0.0-beta.0",
4
4
  "description": "ESLint React's ESLint plugin for RSC related rules.",
5
5
  "keywords": [
6
6
  "react",
@@ -37,20 +37,20 @@
37
37
  "./package.json"
38
38
  ],
39
39
  "dependencies": {
40
- "@typescript-eslint/scope-manager": "^8.57.0",
41
- "@typescript-eslint/type-utils": "^8.57.0",
42
- "@typescript-eslint/types": "^8.57.0",
43
- "@typescript-eslint/utils": "^8.57.0",
40
+ "@typescript-eslint/scope-manager": "^8.57.2",
41
+ "@typescript-eslint/type-utils": "^8.57.2",
42
+ "@typescript-eslint/types": "^8.57.2",
43
+ "@typescript-eslint/utils": "^8.57.2",
44
44
  "ts-pattern": "^5.9.0",
45
- "@eslint-react/ast": "3.0.0",
46
- "@eslint-react/var": "3.0.0",
47
- "@eslint-react/shared": "3.0.0"
45
+ "@eslint-react/ast": "4.0.0-beta.0",
46
+ "@eslint-react/var": "4.0.0-beta.0",
47
+ "@eslint-react/shared": "4.0.0-beta.0"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@types/react": "^19.2.14",
51
51
  "@types/react-dom": "^19.2.3",
52
- "eslint": "^10.0.3",
53
- "tsdown": "^0.21.2",
52
+ "eslint": "^10.1.0",
53
+ "tsdown": "^0.21.4",
54
54
  "@local/configs": "0.0.0",
55
55
  "@local/eff": "3.0.0-beta.72"
56
56
  },