Skip to content

Commit

Permalink
fix: ci configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
elribonazo committed Dec 31, 2024
1 parent 6a6357b commit da3d99b
Show file tree
Hide file tree
Showing 8 changed files with 2,753 additions and 3,435 deletions.
102 changes: 102 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
{
"branches": [
{
"name": "main"
},
{
"name": "develop",
"prerelease": "rc",
"channel": "rc"
},
"v+([0-9])?(.{+([0-9]),x}).x"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "feature",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "docs",
"section": "Documentation",
"hidden": false
},
{
"type": "style",
"section": "Styles",
"hidden": false
},
{
"type": "chore",
"section": "Miscellaneous Chores",
"hidden": false
},
{
"type": "refactor",
"section": "Code Refactoring",
"hidden": false
},
{
"type": "test",
"section": "Tests",
"hidden": false
},
{
"type": "build",
"section": "Build System",
"hidden": false
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": false
}
]
}
}
],
"@semantic-release/github",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"packages/**/package.json",
"packages/**/CHANGELOG.md",
"packages/**/package-lock.json",
"packages/**/docs/**/*"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
],
"noCi": true
}
5 changes: 2 additions & 3 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "independent"
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"version": "0.0.0"
}

Loading

0 comments on commit da3d99b

Please sign in to comment.