@danhezcode/test-auto-release 1.0.0 โ 1.1.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 +14 -0
- package/changelog-preset.js +17 -0
- package/eslint.config.js +1 -0
- package/package.json +10 -7
- package/release.config.mjs +16 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.1.0](https://github.com/DanhezCode/test-release/compare/v1.0.0...v1.1.0) (2026-04-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add writerOps in code ([7ce96ec](https://github.com/DanhezCode/test-release/commit/7ce96ecd8b49f57f002ffef0beb54bf5f97d85cc))
|
|
7
|
+
* remove imports ([ac111b2](https://github.com/DanhezCode/test-release/commit/ac111b2e609ab67b5d1c7252f7fcda274358b831))
|
|
8
|
+
* update import preset ([ee75269](https://github.com/DanhezCode/test-release/commit/ee7526920216a82664a029995c7d77ef57ba0bea))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* edit messages ([589d69d](https://github.com/DanhezCode/test-release/commit/589d69d433ff1751c38f1284ca450285542ee231))
|
|
14
|
+
|
|
1
15
|
# Changelog
|
|
2
16
|
|
|
3
17
|
All notable changes to this project will be documented in this file.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import writerOpts from "conventional-changelog-writer";
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
writerOpts: {
|
|
5
|
+
...writerOpts,
|
|
6
|
+
types: [
|
|
7
|
+
{ type: "feat", section: "๐ New Features", hidden: false },
|
|
8
|
+
{ type: "fix", section: "๐ Bug Fixes", hidden: false },
|
|
9
|
+
{ type: "docs", section: "๐ Documentation Improvements", hidden: false },
|
|
10
|
+
{ type: "style", section: "๐จ Code Style & Formatting", hidden: false },
|
|
11
|
+
{ type: "refactor", section: "๐ง Code Refactoring", hidden: false },
|
|
12
|
+
{ type: "perf", section: "โก Performance Improvements", hidden: false },
|
|
13
|
+
{ type: "test", section: "๐งช Test Updates", hidden: false },
|
|
14
|
+
{ type: "chore", section: "๐ฆ Internal Maintenance", hidden: false },
|
|
15
|
+
],
|
|
16
|
+
},
|
|
17
|
+
};
|
package/eslint.config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@danhezcode/test-auto-release",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"description": "A starter for creating a TypeScript package.",
|
|
6
6
|
"author": "danhezcode@gmail.com",
|
|
7
7
|
"license": "MIT",
|
|
@@ -38,6 +38,10 @@
|
|
|
38
38
|
"@commitlint/cli": "20.3.0",
|
|
39
39
|
"@commitlint/config-conventional": "20.3.0",
|
|
40
40
|
"@eslint/js": "9.39.2",
|
|
41
|
+
"@semantic-release/changelog": "6.0.3",
|
|
42
|
+
"@semantic-release/git": "10.0.1",
|
|
43
|
+
"@semantic-release/github": "12.0.6",
|
|
44
|
+
"@semantic-release/npm": "13.1.4",
|
|
41
45
|
"@types/bun": "latest",
|
|
42
46
|
"@types/node": "25.0.6",
|
|
43
47
|
"eslint": "9.39.2",
|
|
@@ -47,13 +51,12 @@
|
|
|
47
51
|
"globals": "17.0.0",
|
|
48
52
|
"husky": "9.1.7",
|
|
49
53
|
"prettier": "3.7.4",
|
|
54
|
+
"semantic-release": "25.0.3",
|
|
50
55
|
"tsdown": "0.20.0-beta.4",
|
|
51
56
|
"typescript-eslint": "8.51.0",
|
|
52
|
-
"vitest": "4.0.17"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"
|
|
56
|
-
"@semantic-release/npm": "13.1.4",
|
|
57
|
-
"semantic-release": "25.0.3"
|
|
57
|
+
"vitest": "4.0.17"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"conventional-changelog-writer": "^8.4.0"
|
|
58
61
|
}
|
|
59
62
|
}
|
package/release.config.mjs
CHANGED
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
/** @type {import('semantic-release').GlobalConfig} */
|
|
2
2
|
export default {
|
|
3
3
|
branches: ["main", { name: "beta", prerelease: "beta", channel: "beta" }],
|
|
4
|
+
|
|
4
5
|
plugins: [
|
|
5
6
|
"@semantic-release/commit-analyzer",
|
|
7
|
+
|
|
6
8
|
[
|
|
7
9
|
"@semantic-release/release-notes-generator",
|
|
10
|
+
{
|
|
11
|
+
// preset: customPreset,
|
|
12
|
+
},
|
|
13
|
+
],
|
|
14
|
+
|
|
15
|
+
[
|
|
16
|
+
"@semantic-release/changelog",
|
|
8
17
|
{
|
|
9
18
|
changelogFile: "CHANGELOG.md",
|
|
10
|
-
|
|
19
|
+
writerOpts: {
|
|
11
20
|
types: [
|
|
12
21
|
{ type: "feat", section: "๐ New Features", hidden: false },
|
|
13
22
|
{ type: "fix", section: "๐ Bug Fixes", hidden: false },
|
|
@@ -21,16 +30,16 @@ export default {
|
|
|
21
30
|
},
|
|
22
31
|
},
|
|
23
32
|
],
|
|
33
|
+
|
|
34
|
+
["@semantic-release/npm", { npmPublish: true }],
|
|
35
|
+
|
|
24
36
|
[
|
|
25
|
-
"@semantic-release/
|
|
37
|
+
"@semantic-release/git",
|
|
26
38
|
{
|
|
27
|
-
|
|
28
|
-
changelogTitle:
|
|
29
|
-
"# Changelog\n\nAll notable changes to this project will be documented in this file.",
|
|
39
|
+
assets: ["CHANGELOG.md"],
|
|
30
40
|
},
|
|
31
41
|
],
|
|
32
|
-
|
|
33
|
-
["@semantic-release/git", { assets: ["CHANGELOG.md"] }],
|
|
42
|
+
|
|
34
43
|
[
|
|
35
44
|
"@semantic-release/github",
|
|
36
45
|
{
|