Initial commit

This commit is contained in:
2026-02-14 22:37:01 +03:00
commit e7c09c298d
14 changed files with 8902 additions and 0 deletions

63
release.config.js Normal file
View File

@@ -0,0 +1,63 @@
const branch = process.env.CURRENT_BRANCH || "main";
if (!branch) {
throw new Error("CURRENT_BRANCH not set");
}
/**
* @type {import("semantic-release").GlobalConfig}
*/
const config = {
branches: ["main"],
repositoryUrl: "https://github.com/JamsRepos/Jamfin.git",
plugins: [
[
"@semantic-release/commit-analyzer",
{
releaseRules: [
{ scope: "no-release", release: false },
{ type: "build", release: "patch" },
{ type: "ci", release: "patch" },
{ type: "chore", release: "patch" },
{ type: "docs", release: false },
{ type: "refactor", release: "patch" },
{ type: "style", release: "patch" },
{ breaking: true, release: "major" },
],
},
],
[
"@semantic-release/release-notes-generator",
{
preset: "conventionalcommits",
presetConfig: {
types: [
{ type: "feat", section: "New Features" },
{ type: "fix", section: "Bug Fixes" },
{ type: "perf", section: "Performance Improvements", hidden: false },
{ type: "revert", section: "Commit Reverts", hidden: false },
{ type: "build", section: "Build System", hidden: false },
{ type: "ci", section: "Continuous Integration", hidden: false },
{ type: "chore", section: "Chores", hidden: false },
{ type: "docs", section: "Documentation", hidden: false },
{ type: "style", section: "Style Changes", hidden: false },
{ type: "refactor", section: "Code Refactoring", hidden: false },
{ type: "test", section: "Test Cases", hidden: true },
],
},
},
],
[
"@semantic-release/exec",
{
successCmd: "node release.purge.js"
}
]
],
};
if (branch === "main") {
config.plugins.splice(-2, 0, "@semantic-release/github");
}
module.exports = config;