mirror of
https://github.com/nextlevelbuilder/ui-ux-pro-max-skill.git
synced 2026-07-31 18:36:13 +00:00
Adds semantic-release npm publishing for the cli package with pkgRoot=cli and NPM_TOKEN wiring, completing the npm-publish slice of #353.
39 lines
640 B
JSON
39 lines
640 B
JSON
{
|
|
"branches": [
|
|
"main",
|
|
{
|
|
"name": "dev",
|
|
"channel": "beta",
|
|
"prerelease": "beta"
|
|
}
|
|
],
|
|
"tagFormat": "v${version}",
|
|
"plugins": [
|
|
[
|
|
"@semantic-release/commit-analyzer",
|
|
{
|
|
"preset": "conventionalcommits"
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/release-notes-generator",
|
|
{
|
|
"preset": "conventionalcommits"
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/npm",
|
|
{
|
|
"pkgRoot": "cli"
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/github",
|
|
{
|
|
"successComment": false,
|
|
"failTitle": "Release failed for ${branch.name}"
|
|
}
|
|
]
|
|
]
|
|
}
|