@peerigon/configs 10.0.0 → 11.0.1
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/CHANGELOG.md +34 -0
- package/dist/eslint/rules/vitest.js +0 -1
- package/package.json +21 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,37 @@
|
|
|
1
|
+
## [11.0.1](https://github.com/peerigon/configs/compare/v11.0.0...v11.0.1) (2025-11-03)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- Downgrade ESLint peer dependency to 9.36.0 ([351cfc5](https://github.com/peerigon/configs/commit/351cfc55ec2c852ac1df48c0d5b289c9dd6e3b13))
|
|
6
|
+
|
|
7
|
+
# [11.0.0](https://github.com/peerigon/configs/compare/v10.0.0...v11.0.0) (2025-11-03)
|
|
8
|
+
|
|
9
|
+
### chore
|
|
10
|
+
|
|
11
|
+
- update dependencies in package.json and package-lock.json ([e1b7d17](https://github.com/peerigon/configs/commit/e1b7d176770e143a14fc2e9c9e7aa022a98c0284))
|
|
12
|
+
|
|
13
|
+
### BREAKING CHANGES
|
|
14
|
+
|
|
15
|
+
- There might be new recommended ESLint rules that might
|
|
16
|
+
break your build.
|
|
17
|
+
|
|
18
|
+
* Bump versions for several dependencies including:
|
|
19
|
+
- @eslint-react/eslint-plugin: ^2.2.4 → ^2.3.1
|
|
20
|
+
- @eslint/compat: ^1.4.0 → ^1.4.1
|
|
21
|
+
- @eslint/js: ^9.38.0 → ^9.39.0
|
|
22
|
+
- @sebbo2002/semantic-release-jsr: ^3.0.1 → ^3.1.0
|
|
23
|
+
- @tanstack/eslint-plugin-query: ^5.91.1 → ^5.91.2
|
|
24
|
+
- @vitest/eslint-plugin: ^1.3.25 → ^1.4.0
|
|
25
|
+
- eslint-plugin-playwright: ^2.2.2 → ^2.3.0
|
|
26
|
+
- eslint-plugin-react-you-might-not-need-an-effect: ^0.6.1 → ^0.7.0
|
|
27
|
+
- globals: ^16.4.0 → ^16.5.0
|
|
28
|
+
- prettier-plugin-jsdoc: ^1.3.3 → ^1.5.0
|
|
29
|
+
- @types/node: ^24.9.1 → ^24.10.0
|
|
30
|
+
- eslint: ^9.38.0 → ^9.39.0
|
|
31
|
+
- rimraf: ^6.0.1 → ^6.1.0
|
|
32
|
+
* Update peer dependencies to match the latest versions.
|
|
33
|
+
* Fix: semantic-release peer dependency is optional now
|
|
34
|
+
|
|
1
35
|
# [10.0.0](https://github.com/peerigon/configs/compare/v9.1.0...v10.0.0) (2025-10-27)
|
|
2
36
|
|
|
3
37
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@peerigon/configs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "11.0.1",
|
|
4
4
|
"description": "Configs for ESLint, Prettier, TypeScript & friends",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -70,58 +70,58 @@
|
|
|
70
70
|
"release": "semantic-release"
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@eslint-react/eslint-plugin": "^2.
|
|
74
|
-
"@eslint/compat": "^1.4.
|
|
75
|
-
"@eslint/js": "^9.
|
|
73
|
+
"@eslint-react/eslint-plugin": "^2.3.1",
|
|
74
|
+
"@eslint/compat": "^1.4.1",
|
|
75
|
+
"@eslint/js": "^9.39.0",
|
|
76
76
|
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
|
|
77
77
|
"@prettier/plugin-oxc": "^0.0.4",
|
|
78
|
-
"@sebbo2002/semantic-release-jsr": "^3.0
|
|
78
|
+
"@sebbo2002/semantic-release-jsr": "^3.1.0",
|
|
79
79
|
"@semantic-release/changelog": "^6.0.3",
|
|
80
80
|
"@semantic-release/exec": "^7.1.0",
|
|
81
81
|
"@semantic-release/git": "^10.0.1",
|
|
82
|
-
"@tanstack/eslint-plugin-query": "^5.91.
|
|
82
|
+
"@tanstack/eslint-plugin-query": "^5.91.2",
|
|
83
83
|
"@types/eslint-config-prettier": "^6.11.3",
|
|
84
84
|
"@types/eslint-plugin-jsx-a11y": "^6.10.1",
|
|
85
|
-
"@vitest/eslint-plugin": "^1.
|
|
85
|
+
"@vitest/eslint-plugin": "^1.4.0",
|
|
86
86
|
"eslint-config-prettier": "^10.1.8",
|
|
87
87
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
88
88
|
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
89
|
-
"eslint-plugin-playwright": "^2.
|
|
89
|
+
"eslint-plugin-playwright": "^2.3.0",
|
|
90
90
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
91
91
|
"eslint-plugin-react": "^7.37.5",
|
|
92
92
|
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
|
|
93
93
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
94
94
|
"eslint-plugin-react-refresh": "^0.4.24",
|
|
95
|
-
"eslint-plugin-react-you-might-not-need-an-effect": "^0.
|
|
95
|
+
"eslint-plugin-react-you-might-not-need-an-effect": "^0.7.0",
|
|
96
96
|
"eslint-plugin-unicorn": "^62.0.0",
|
|
97
|
-
"globals": "^16.
|
|
97
|
+
"globals": "^16.5.0",
|
|
98
98
|
"prettier-plugin-css-order": "^2.1.2",
|
|
99
|
-
"prettier-plugin-jsdoc": "^1.
|
|
99
|
+
"prettier-plugin-jsdoc": "^1.5.0",
|
|
100
100
|
"prettier-plugin-packagejson": "^2.5.19",
|
|
101
101
|
"prettier-plugin-tailwindcss": "^0.7.1",
|
|
102
102
|
"typescript-eslint": "^8.46.2"
|
|
103
103
|
},
|
|
104
104
|
"devDependencies": {
|
|
105
105
|
"@types/jest": "^30.0.0",
|
|
106
|
-
"@types/node": "^24.
|
|
106
|
+
"@types/node": "^24.10.0",
|
|
107
107
|
"@types/react": "^19.2.2",
|
|
108
108
|
"@types/signale": "^1.4.7",
|
|
109
|
-
"eslint": "^9.
|
|
109
|
+
"eslint": "^9.36.0",
|
|
110
110
|
"husky": "^9.1.7",
|
|
111
111
|
"lint-staged": "^16.2.6",
|
|
112
112
|
"npm-run-all2": "^8.0.4",
|
|
113
113
|
"pin-github-action": "^3.4.0",
|
|
114
114
|
"prettier": "^3.6.2",
|
|
115
115
|
"react": "^19.2.0",
|
|
116
|
-
"rimraf": "^6.0
|
|
116
|
+
"rimraf": "^6.1.0",
|
|
117
117
|
"semantic-release": "^25.0.1",
|
|
118
118
|
"typescript": "^5.9.3"
|
|
119
119
|
},
|
|
120
120
|
"peerDependencies": {
|
|
121
|
-
"eslint": "^9.
|
|
122
|
-
"prettier": "^3.
|
|
123
|
-
"semantic-release": "^
|
|
124
|
-
"typescript": "^5.
|
|
121
|
+
"eslint": "^9.36.0",
|
|
122
|
+
"prettier": "^3.6.2",
|
|
123
|
+
"semantic-release": "^25.0.1",
|
|
124
|
+
"typescript": "^5.9.3"
|
|
125
125
|
},
|
|
126
126
|
"peerDependenciesMeta": {
|
|
127
127
|
"eslint": {
|
|
@@ -130,6 +130,9 @@
|
|
|
130
130
|
"prettier": {
|
|
131
131
|
"optional": true
|
|
132
132
|
},
|
|
133
|
+
"semantic-release": {
|
|
134
|
+
"optional": true
|
|
135
|
+
},
|
|
133
136
|
"typescript": {
|
|
134
137
|
"optional": true
|
|
135
138
|
}
|