feat: add changelog

This commit is contained in:
Michael Kriese 2023-01-04 15:09:01 +01:00
parent 2722882bb1
commit 7a8dfe7539
No known key found for this signature in database
GPG key ID: B83F553A0724D44E
3 changed files with 2902 additions and 0 deletions

2885
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -14,6 +14,8 @@
},
"devDependencies": {
"@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"
}
}

15
tools/changelog.mjs Normal file
View 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);