feat: add changelog
This commit is contained in:
parent
2722882bb1
commit
7a8dfe7539
3 changed files with 2902 additions and 0 deletions
2885
package-lock.json
generated
2885
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -14,6 +14,8 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@bitnami/readme-generator-for-helm": "^2.4.2",
|
"@bitnami/readme-generator-for-helm": "^2.4.2",
|
||||||
|
"conventional-changelog-conventionalcommits": "^5.0.0",
|
||||||
|
"conventional-changelog-core": "^4.2.4",
|
||||||
"markdownlint-cli": "^0.32.0"
|
"markdownlint-cli": "^0.32.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
15
tools/changelog.mjs
Normal file
15
tools/changelog.mjs
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
import conventionalChangelogCore from 'conventional-changelog-core';
|
||||||
|
import conventionalChangelogPreset from 'conventional-changelog-conventionalcommits';
|
||||||
|
|
||||||
|
const config = conventionalChangelogPreset();
|
||||||
|
|
||||||
|
conventionalChangelogCore(
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
releaseCount: 2,
|
||||||
|
},
|
||||||
|
{ version: '0.1.1', linkCompare: false },
|
||||||
|
undefined,
|
||||||
|
undefined,
|
||||||
|
{ headerPartial: '' }
|
||||||
|
).pipe(process.stdout);
|
Loading…
Reference in a new issue