@peerigon/configs 1.0.0-beta.21 → 1.0.0-beta.22

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 CHANGED
@@ -1,3 +1,9 @@
1
+ # [1.0.0-beta.22](https://github.com/peerigon/configs/compare/v1.0.0-beta.21...v1.0.0-beta.22) (2025-02-04)
2
+
3
+ ### Features
4
+
5
+ - Update dependencies ([07d0f37](https://github.com/peerigon/configs/commit/07d0f3781186cc86603444e0c2cf3b5185e3844a))
6
+
1
7
  # [1.0.0-beta.21](https://github.com/peerigon/configs/compare/v1.0.0-beta.20...v1.0.0-beta.21) (2025-01-27)
2
8
 
3
9
  ### Bug Fixes
package/README.md CHANGED
@@ -7,8 +7,6 @@
7
7
  [![Monthly downloads on NPM](https://img.shields.io/npm/dm/@peerigon/configs?style=for-the-badge)](https://www.npmjs.com/package/@peerigon/configs)<br>
8
8
  [![License](https://img.shields.io/npm/l/@peerigon/configs?style=for-the-badge)](./LICENSE)
9
9
 
10
- This package contains best practice configs and rules for linting, type-checking, formatting and publishing JavaScript and TypeScript code. Use them to kickstart you next awesome web project 🚀!
11
-
12
10
  ## Installation
13
11
 
14
12
  ```sh
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@peerigon/configs",
3
- "version": "1.0.0-beta.21",
3
+ "version": "1.0.0-beta.22",
4
4
  "description": "Configs for ESLint, Prettier, TypeScript & friends",
5
5
  "keywords": [
6
6
  "eslint",
@@ -122,10 +122,13 @@
122
122
  "*.{js,jsx,ts,tsx,css,md,yml,yaml}": "prettier --write"
123
123
  },
124
124
  "dependencies": {
125
- "@eslint-react/eslint-plugin": "^1.24.1",
126
- "@eslint/compat": "^1.2.5",
125
+ "@eslint-react/eslint-plugin": "^1.26.1",
126
+ "@eslint/compat": "^1.2.6",
127
127
  "@eslint/js": "^9.19.0",
128
128
  "@ianvs/prettier-plugin-sort-imports": "^4.4.1",
129
+ "@semantic-release/changelog": "^6.0.3",
130
+ "@semantic-release/exec": "^7.0.3",
131
+ "@semantic-release/git": "^10.0.1",
129
132
  "@types/eslint-config-prettier": "^6.11.3",
130
133
  "@types/eslint-plugin-jsx-a11y": "^6.10.0",
131
134
  "@types/eslint__js": "^8.42.3",
@@ -133,7 +136,7 @@
133
136
  "eslint-plugin-jsx-a11y": "^6.10.2",
134
137
  "eslint-plugin-prefer-arrow": "^1.2.3",
135
138
  "eslint-plugin-react": "^7.37.4",
136
- "eslint-plugin-react-compiler": "^19.0.0-beta-a7bf2bd-20241110",
139
+ "eslint-plugin-react-compiler": "^19.0.0-beta-714736e-20250131",
137
140
  "eslint-plugin-react-hooks": "^5.1.0",
138
141
  "eslint-plugin-react-refresh": "^0.4.18",
139
142
  "eslint-plugin-unicorn": "^56.0.1",
@@ -142,19 +145,16 @@
142
145
  "prettier-plugin-jsdoc": "^1.3.2",
143
146
  "prettier-plugin-packagejson": "^2.5.8",
144
147
  "prettier-plugin-tailwindcss": "^0.6.11",
145
- "typescript-eslint": "^8.21.0"
148
+ "typescript-eslint": "^8.23.0"
146
149
  },
147
150
  "devDependencies": {
148
- "@semantic-release/changelog": "^6.0.3",
149
- "@semantic-release/exec": "^6.0.3",
150
- "@semantic-release/git": "^10.0.1",
151
- "@types/node": "^22.10.10",
151
+ "@types/node": "^22.13.1",
152
152
  "@types/react": "^19.0.8",
153
153
  "eslint": "^9.19.0",
154
154
  "husky": "^9.1.7",
155
155
  "lint-staged": "^15.4.3",
156
156
  "npm-run-all": "^4.1.5",
157
- "pin-github-action": "^2.0.2",
157
+ "pin-github-action": "^2.1.0",
158
158
  "prettier": "^3.4.2",
159
159
  "react": "^19.0.0",
160
160
  "semantic-release": "^24.2.1",
@@ -57,6 +57,8 @@ jobs:
57
57
  # Necessary for npm publish --provenance
58
58
  # See https://docs.npmjs.com/generating-provenance-statements#example-github-actions-workflow
59
59
  id-token: write
60
+ # packages: write is only necessary if you want to publish to Github
61
+ packages: write
60
62
 
61
63
  steps:
62
64
  # ...