mirror of
https://github.com/ivuorinen/base-configs-semantic-release.git
synced 2026-02-04 07:43:24 +00:00
21 lines
550 B
JavaScript
21 lines
550 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
branches: ["main"],
|
|
plugins: [
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
[
|
|
"@semantic-release/changelog",
|
|
{
|
|
changelogTitle:
|
|
"# Changelog\n\nAll notable changes to this project will be documented in this file. See\n[Conventional Commits](https://conventionalcommits.org) for commit guidelines.",
|
|
},
|
|
],
|
|
"@semantic-release/npm",
|
|
"@semantic-release/github",
|
|
"@semantic-release/git",
|
|
],
|
|
preset: "angular",
|
|
};
|