release-test-mojipcmobila 1.22.0 → 1.23.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/{.release-it.json → .release-it.ts} +5 -6
- package/CHANGELOG.md +12 -0
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
{
|
|
2
|
-
|
|
1
|
+
import type { Config } from 'release-it';
|
|
2
|
+
|
|
3
|
+
export default {
|
|
3
4
|
"git": {
|
|
4
5
|
"commitMessage": "chore: release v${version}",
|
|
5
6
|
"tagName": "v${version}",
|
|
@@ -7,14 +8,12 @@
|
|
|
7
8
|
},
|
|
8
9
|
"hooks": {
|
|
9
10
|
"before:init": [
|
|
10
|
-
"git pull
|
|
11
|
-
"if [ ! -f CHANGELOG.md ]; then echo '# Changelog' > CHANGELOG.md && git add CHANGELOG.md && git commit -m 'chore: add initial changelog'; fi"
|
|
11
|
+
"git pull"
|
|
12
12
|
]
|
|
13
13
|
},
|
|
14
14
|
"github": {
|
|
15
15
|
"release": true,
|
|
16
16
|
"releaseName": "v${version}",
|
|
17
|
-
"changelog": "CHANGELOG.md"
|
|
18
17
|
},
|
|
19
18
|
"npm": {
|
|
20
19
|
"publish": true
|
|
@@ -71,4 +70,4 @@
|
|
|
71
70
|
}
|
|
72
71
|
}
|
|
73
72
|
}
|
|
74
|
-
}
|
|
73
|
+
}satisfies Config;
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.23.0 (2025-10-28)
|
|
4
|
+
|
|
5
|
+
### 🚀 Features
|
|
6
|
+
|
|
7
|
+
* update ([d8c45ac](https://github.com/mojipcmobila-png/release-test/commit/d8c45acc75a6e45dffda73c2052be4a5dcba7979))
|
|
8
|
+
|
|
9
|
+
## 1.22.1 (2025-10-28)
|
|
10
|
+
|
|
11
|
+
### 🐞 Bug Fixes
|
|
12
|
+
|
|
13
|
+
* small change ([54e43a6](https://github.com/mojipcmobila-png/release-test/commit/54e43a6e2b6fe0f3b49b0169ec2787292dad05d2))
|
|
14
|
+
|
|
3
15
|
## 1.22.0 (2025-10-28)
|
|
4
16
|
|
|
5
17
|
### 🚀 Features
|