@peerigon/configs 7.0.0 → 7.0.2
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 +12 -0
- package/README.md +3 -2
- package/dist/typescript/base.json +9 -1
- package/dist/typescript/lib.json +3 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [7.0.2](https://github.com/peerigon/configs/compare/v7.0.1...v7.0.2) (2025-08-05)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **typescript:** Add inlineSources: true for lib tsconfigs ([d25c418](https://github.com/peerigon/configs/commit/d25c41814836a342b2958a2338c9f438fdf3b11e))
|
|
6
|
+
|
|
7
|
+
## [7.0.1](https://github.com/peerigon/configs/compare/v7.0.0...v7.0.1) (2025-07-29)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **typescript:** Exclude common build directories ([cf1f657](https://github.com/peerigon/configs/commit/cf1f657b4595837c685b91fb1b0253f69a2fc3f8))
|
|
12
|
+
|
|
1
13
|
# [7.0.0](https://github.com/peerigon/configs/compare/v6.10.0...v7.0.0) (2025-07-22)
|
|
2
14
|
|
|
3
15
|
### Features
|
package/README.md
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
**Best practice configs for [ESLint](https://eslint.org/), [Prettier](https://prettier.io/), [TypeScript](https://www.typescriptlang.org/) & friends. By [Peerigon](https://www.peerigon.com/).**
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@peerigon/configs)
|
|
6
|
+
[](https://jsr.io/@peerigon/configs)
|
|
6
7
|
[](https://github.com/semantic-release/semantic-release)
|
|
7
8
|
[](https://www.npmjs.com/package/@peerigon/configs)<br>
|
|
8
9
|
[](./LICENSE)
|
|
@@ -40,9 +41,9 @@ Our configs have been designed with these assumptions in mind.
|
|
|
40
41
|
|
|
41
42
|
Formatting should follow the community standard. Our config is therefore based on Prettier's default config. Besides that it also:
|
|
42
43
|
|
|
43
|
-
-
|
|
44
|
+
- sorts `import` statements
|
|
44
45
|
- formats JSDoc comments
|
|
45
|
-
- formats `package.json`
|
|
46
|
+
- formats and sorts `package.json` fields
|
|
46
47
|
- formats and sorts CSS properties
|
|
47
48
|
- sorts Tailwind CSS class names
|
|
48
49
|
|
|
@@ -41,6 +41,14 @@
|
|
|
41
41
|
// Disable this if you already have an existing codebase that uses non-erasable syntax.
|
|
42
42
|
"erasableSyntaxOnly": true
|
|
43
43
|
},
|
|
44
|
-
"exclude": [
|
|
44
|
+
"exclude": [
|
|
45
|
+
"${configDir}/dist",
|
|
46
|
+
"${configDir}/coverage",
|
|
47
|
+
"${configDir}/node_modules",
|
|
48
|
+
"${configDir}/build",
|
|
49
|
+
"${configDir}/.next",
|
|
50
|
+
"${configDir}/.nuxt",
|
|
51
|
+
"${configDir}/.vercel"
|
|
52
|
+
],
|
|
45
53
|
"$schema": "https://json.schemastore.org/tsconfig"
|
|
46
54
|
}
|
package/dist/typescript/lib.json
CHANGED
|
@@ -6,7 +6,9 @@
|
|
|
6
6
|
"declarationMap": true,
|
|
7
7
|
"noEmit": false,
|
|
8
8
|
"outDir": "${configDir}/dist",
|
|
9
|
-
"sourceMap": true
|
|
9
|
+
"sourceMap": true,
|
|
10
|
+
// Use inlineSources: true because often we only publish the dist folder on npm
|
|
11
|
+
"inlineSources": true
|
|
10
12
|
},
|
|
11
13
|
"$schema": "https://json.schemastore.org/tsconfig"
|
|
12
14
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@peerigon/configs",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.2",
|
|
4
4
|
"description": "Configs for ESLint, Prettier, TypeScript & friends",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"@eslint-react/eslint-plugin": "^1.52.3",
|
|
69
69
|
"@eslint/compat": "^1.3.1",
|
|
70
|
-
"@eslint/js": "^9.
|
|
70
|
+
"@eslint/js": "^9.32.0",
|
|
71
71
|
"@ianvs/prettier-plugin-sort-imports": "^4.5.1",
|
|
72
72
|
"@prettier/plugin-oxc": "^0.0.4",
|
|
73
73
|
"@sebbo2002/semantic-release-jsr": "^3.0.1",
|
|
@@ -94,16 +94,16 @@
|
|
|
94
94
|
},
|
|
95
95
|
"devDependencies": {
|
|
96
96
|
"@types/jest": "^30.0.0",
|
|
97
|
-
"@types/node": "^24.
|
|
98
|
-
"@types/react": "^19.1.
|
|
97
|
+
"@types/node": "^24.2.0",
|
|
98
|
+
"@types/react": "^19.1.9",
|
|
99
99
|
"@types/signale": "^1.4.7",
|
|
100
|
-
"eslint": "^9.
|
|
100
|
+
"eslint": "^9.32.0",
|
|
101
101
|
"husky": "^9.1.7",
|
|
102
|
-
"lint-staged": "^16.1.
|
|
102
|
+
"lint-staged": "^16.1.4",
|
|
103
103
|
"npm-run-all2": "^8.0.4",
|
|
104
104
|
"pin-github-action": "^3.4.0",
|
|
105
105
|
"prettier": "^3.6.2",
|
|
106
|
-
"react": "^19.1.
|
|
106
|
+
"react": "^19.1.1",
|
|
107
107
|
"rimraf": "^6.0.1",
|
|
108
108
|
"semantic-release": "^24.2.7",
|
|
109
109
|
"typescript": "^5.8.3"
|