mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 11:19:12 +01:00
* fix(deps): update dependency prettier to ^3.2.5 * fix: formatting * fix: formatting * fix: formatting --------- Co-authored-by: homarr-renovate[bot] <158783068+homarr-renovate[bot]@users.noreply.github.com> Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
17 lines
403 B
JavaScript
17 lines
403 B
JavaScript
/**
|
|
* @type {import('semantic-release').GlobalConfig}
|
|
*/
|
|
module.exports = {
|
|
branches: ["main"],
|
|
prepare: [
|
|
"@semantic-release/changelog",
|
|
"@semantic-release/npm",
|
|
{
|
|
path: "@semantic-release/git",
|
|
assets: ["package.json", "package-lock.json", "CHANGELOG.md"],
|
|
message:
|
|
"chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
|
|
},
|
|
],
|
|
};
|