@faergeek/eslint-config 7.1.0 → 7.1.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 +13 -1
- package/package.json +4 -6
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## 7.1.2 (2025-09-07)
|
|
6
|
+
|
|
7
|
+
### Fixes
|
|
8
|
+
|
|
9
|
+
- Add CHANGELOG.md back to a package
|
|
10
|
+
|
|
11
|
+
## 7.1.1 (2025-09-06)
|
|
12
|
+
|
|
13
|
+
### Fixes
|
|
14
|
+
|
|
15
|
+
- Revert back to not having CHANGELOG.md
|
|
16
|
+
|
|
17
|
+
## 7.1.0 (2025-09-06)
|
|
6
18
|
|
|
7
19
|
### Features
|
|
8
20
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@faergeek/eslint-config",
|
|
4
|
-
"version": "7.1.
|
|
4
|
+
"version": "7.1.2",
|
|
5
5
|
"exports": "./index.js",
|
|
6
6
|
"files": [
|
|
7
|
-
"CHANGELOG.md",
|
|
7
|
+
"./CHANGELOG.md",
|
|
8
8
|
"index.js"
|
|
9
9
|
],
|
|
10
10
|
"author": "Sergei Slipchenko <faergeek@gmail.com>",
|
|
@@ -36,9 +36,7 @@
|
|
|
36
36
|
"lint": "eslint --max-warnings 0",
|
|
37
37
|
"format": "prettier --write .",
|
|
38
38
|
"format:check": "prettier --check .",
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"version": "pnpm run generate-changelog && git add CHANGELOG.md",
|
|
42
|
-
"postversion": "pnpm publish"
|
|
39
|
+
"generate-changelog": "git-cliff --bump -o CHANGELOG.md && prettier --write CHANGELOG.md",
|
|
40
|
+
"version": "pnpm run generate-changelog && git add CHANGELOG.md"
|
|
43
41
|
}
|
|
44
42
|
}
|