@peerigon/configs 14.1.1 → 14.2.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.
- package/CHANGELOG.md +6 -0
- package/dist/prettier/base.js +1 -3
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
# [14.2.0](https://github.com/peerigon/configs/compare/v14.1.1...v14.2.0) (2026-02-20)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **deps:** update dependencies in package.json and package-lock.json ([5c437a4](https://github.com/peerigon/configs/commit/5c437a4a6c3814a82008ef113e297c4460105052))
|
|
6
|
+
|
|
1
7
|
## [14.1.1](https://github.com/peerigon/configs/compare/v14.1.0...v14.1.1) (2026-02-18)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/dist/prettier/base.js
CHANGED
|
@@ -25,9 +25,7 @@ function safeResolve(id) {
|
|
|
25
25
|
// Using safeResolve() here because the plugins might not be installed in the parent app/module
|
|
26
26
|
// and we don't want to rely on the package manager to hoist the dependencies.
|
|
27
27
|
const plugins = await Promise.all([
|
|
28
|
-
|
|
29
|
-
// its peerDependencies, but the lower version is not compatible with the latest Prettier.
|
|
30
|
-
// safeResolve("@prettier/plugin-oxc"),
|
|
28
|
+
safeResolve("@prettier/plugin-oxc"),
|
|
31
29
|
safeResolve("@ianvs/prettier-plugin-sort-imports"),
|
|
32
30
|
safeResolve("prettier-plugin-jsdoc"),
|
|
33
31
|
safeResolve("prettier-plugin-packagejson"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@peerigon/configs",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.2.0",
|
|
4
4
|
"description": "Configs for ESLint, Prettier, TypeScript & friends",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -78,41 +78,41 @@
|
|
|
78
78
|
"test:types": "tsc --noEmit"
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
|
-
"@eslint-react/eslint-plugin": "^2.
|
|
81
|
+
"@eslint-react/eslint-plugin": "^2.13.0",
|
|
82
82
|
"@eslint/compat": "^2.0.2",
|
|
83
83
|
"@eslint/js": "^9.39.1",
|
|
84
84
|
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
|
|
85
|
-
"@prettier/plugin-oxc": "^0.
|
|
86
|
-
"@sebbo2002/semantic-release-jsr": "^3.
|
|
85
|
+
"@prettier/plugin-oxc": "^0.1.3",
|
|
86
|
+
"@sebbo2002/semantic-release-jsr": "^3.2.0",
|
|
87
87
|
"@semantic-release/changelog": "^6.0.3",
|
|
88
88
|
"@semantic-release/exec": "^7.1.0",
|
|
89
89
|
"@semantic-release/git": "^10.0.1",
|
|
90
90
|
"@tanstack/eslint-plugin-query": "^5.91.4",
|
|
91
91
|
"@types/eslint-config-prettier": "^6.11.3",
|
|
92
92
|
"@types/eslint-plugin-jsx-a11y": "^6.10.1",
|
|
93
|
-
"@vitest/eslint-plugin": "^1.6.
|
|
93
|
+
"@vitest/eslint-plugin": "^1.6.9",
|
|
94
94
|
"eslint-config-prettier": "^10.1.8",
|
|
95
95
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
96
96
|
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
97
|
-
"eslint-plugin-playwright": "^2.
|
|
97
|
+
"eslint-plugin-playwright": "^2.7.0",
|
|
98
98
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
|
99
99
|
"eslint-plugin-react": "^7.37.5",
|
|
100
100
|
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
|
|
101
101
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
102
102
|
"eslint-plugin-react-refresh": "^0.5.0",
|
|
103
|
-
"eslint-plugin-react-you-might-not-need-an-effect": "^0.
|
|
104
|
-
"eslint-plugin-unicorn": "^
|
|
103
|
+
"eslint-plugin-react-you-might-not-need-an-effect": "^0.9.1",
|
|
104
|
+
"eslint-plugin-unicorn": "^63.0.0",
|
|
105
105
|
"globals": "^17.3.0",
|
|
106
106
|
"prettier-plugin-css-order": "^2.2.0",
|
|
107
107
|
"prettier-plugin-jsdoc": "^1.8.0",
|
|
108
108
|
"prettier-plugin-packagejson": "^3.0.0",
|
|
109
109
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
110
|
-
"typescript-eslint": "^8.
|
|
110
|
+
"typescript-eslint": "^8.56.0"
|
|
111
111
|
},
|
|
112
112
|
"devDependencies": {
|
|
113
113
|
"@types/jest": "^30.0.0",
|
|
114
|
-
"@types/node": "^25.
|
|
115
|
-
"@types/react": "^19.2.
|
|
114
|
+
"@types/node": "^25.3.0",
|
|
115
|
+
"@types/react": "^19.2.14",
|
|
116
116
|
"@types/signale": "^1.4.7",
|
|
117
117
|
"eslint": "^9.39.1",
|
|
118
118
|
"husky": "^9.1.7",
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
"pin-github-action": "^3.4.0",
|
|
122
122
|
"prettier": "^3.8.1",
|
|
123
123
|
"react": "^19.2.4",
|
|
124
|
-
"rimraf": "^6.1.
|
|
124
|
+
"rimraf": "^6.1.3",
|
|
125
125
|
"semantic-release": "^25.0.3",
|
|
126
126
|
"typescript": "^5.9.3"
|
|
127
127
|
},
|