fix(docs):Docs and Exports
ci/woodpecker/push/ci Pipeline failed
ci/woodpecker/push/publish unknown status

- Add documentation for recently released changes
- Update some exports to include enums
This commit is contained in:
2026-08-21 11:45:56 -03:00
parent 2134ba58b8
commit f464fa5017
18 changed files with 1350 additions and 1307 deletions
+11 -11
View File
@@ -3,7 +3,7 @@ const releaseToken = process.env.GITEA_RELEASE_TOKEN;
const repositoryUrl =
releaseUsername && releaseToken
? `https://${encodeURIComponent(releaseUsername)}:${encodeURIComponent(releaseToken)}@git.mifi.dev/mifi/logger.git`
: "https://git.mifi.dev/mifi/logger.git";
: 'https://git.mifi.dev/mifi/logger.git';
/**
* Default Angular preset rejects `feat!` / `fix!` headers entirely (no release).
@@ -12,23 +12,23 @@ const repositoryUrl =
const conventionalCommitParserOpts = {
headerPattern: /^(\w*)(?:\((.*)\))?!?: (.*)$/,
breakingHeaderPattern: /^(\w*)(?:\((.*)\))?!: (.*)$/,
noteKeywords: ["BREAKING CHANGE", "BREAKING-CHANGE"],
noteKeywords: ['BREAKING CHANGE', 'BREAKING-CHANGE'],
};
module.exports = {
branches: ["main"],
branches: ['main'],
repositoryUrl,
tagFormat: "v${version}",
tagFormat: 'v${version}',
plugins: [
["@semantic-release/commit-analyzer", { parserOpts: conventionalCommitParserOpts }],
["@semantic-release/release-notes-generator", { parserOpts: conventionalCommitParserOpts }],
["@semantic-release/changelog", { changelogFile: "CHANGELOG.md" }],
"@semantic-release/npm",
['@semantic-release/commit-analyzer', { parserOpts: conventionalCommitParserOpts }],
['@semantic-release/release-notes-generator', { parserOpts: conventionalCommitParserOpts }],
['@semantic-release/changelog', { changelogFile: 'CHANGELOG.md' }],
'@semantic-release/npm',
[
"@semantic-release/git",
'@semantic-release/git',
{
assets: ["CHANGELOG.md", "package.json", "pnpm-lock.yaml"],
message: "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
assets: ['CHANGELOG.md', 'package.json', 'pnpm-lock.yaml'],
message: 'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
},
],
],