@rsbuild/plugin-eslint 1.0.2 → 1.0.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.
- package/README.md +2 -2
- package/package.json +15 -14
package/README.md
CHANGED
|
@@ -71,9 +71,9 @@ pluginEslint({
|
|
|
71
71
|
|
|
72
72
|
### eslintPluginOptions
|
|
73
73
|
|
|
74
|
-
To modify the options of `eslint-rspack-plugin`, please refer to [eslint-rspack-plugin - README](https://github.com/
|
|
74
|
+
To modify the options of `eslint-rspack-plugin`, please refer to [eslint-rspack-plugin - README](https://github.com/rspack-contrib/eslint-rspack-plugin#readme) to learn about available options.
|
|
75
75
|
|
|
76
|
-
- **Type:** [Options](https://github.com/
|
|
76
|
+
- **Type:** [Options](https://github.com/rspack-contrib/eslint-rspack-plugin/blob/master/types/options.d.ts)
|
|
77
77
|
- **Default:**
|
|
78
78
|
|
|
79
79
|
```ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsbuild/plugin-eslint",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"repository": "https://github.com/rspack-contrib/rsbuild-plugin-eslint",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"lint": "biome check .",
|
|
22
22
|
"lint:write": "biome check . --write",
|
|
23
23
|
"prepare": "simple-git-hooks && npm run build",
|
|
24
|
-
"test": "playwright test"
|
|
24
|
+
"test": "playwright test",
|
|
25
|
+
"bump": "npx bumpp"
|
|
25
26
|
},
|
|
26
27
|
"simple-git-hooks": {
|
|
27
28
|
"pre-commit": "npx nano-staged"
|
|
@@ -32,23 +33,23 @@
|
|
|
32
33
|
]
|
|
33
34
|
},
|
|
34
35
|
"dependencies": {
|
|
35
|
-
"eslint-rspack-plugin": "^4.2.
|
|
36
|
-
"webpack": "^5.
|
|
36
|
+
"eslint-rspack-plugin": "^4.2.1",
|
|
37
|
+
"webpack": "^5.95.0"
|
|
37
38
|
},
|
|
38
39
|
"devDependencies": {
|
|
39
|
-
"@biomejs/biome": "^1.
|
|
40
|
-
"@playwright/test": "^1.
|
|
41
|
-
"@rsbuild/core": "1.0.
|
|
42
|
-
"@types/node": "^20.
|
|
43
|
-
"eslint": "^9.
|
|
40
|
+
"@biomejs/biome": "^1.9.2",
|
|
41
|
+
"@playwright/test": "^1.47.2",
|
|
42
|
+
"@rsbuild/core": "^1.0.8",
|
|
43
|
+
"@types/node": "^20.16.10",
|
|
44
|
+
"eslint": "^9.11.1",
|
|
44
45
|
"nano-staged": "^0.8.0",
|
|
45
|
-
"playwright": "^1.
|
|
46
|
+
"playwright": "^1.47.2",
|
|
46
47
|
"simple-git-hooks": "^2.11.1",
|
|
47
|
-
"tsup": "^8.
|
|
48
|
-
"typescript": "^5.
|
|
48
|
+
"tsup": "^8.3.0",
|
|
49
|
+
"typescript": "^5.6.2"
|
|
49
50
|
},
|
|
50
51
|
"peerDependencies": {
|
|
51
|
-
"@rsbuild/core": "1.x",
|
|
52
|
+
"@rsbuild/core": "1.x || ^1.0.1-beta.0",
|
|
52
53
|
"eslint": "^8.0.0 || ^9.0.0"
|
|
53
54
|
},
|
|
54
55
|
"peerDependenciesMeta": {
|
|
@@ -56,7 +57,7 @@
|
|
|
56
57
|
"optional": true
|
|
57
58
|
}
|
|
58
59
|
},
|
|
59
|
-
"packageManager": "pnpm@9.
|
|
60
|
+
"packageManager": "pnpm@9.11.0",
|
|
60
61
|
"publishConfig": {
|
|
61
62
|
"access": "public",
|
|
62
63
|
"registry": "https://registry.npmjs.org/"
|