mini-strap/cog.toml
aleidk 20cadc8521
All checks were successful
Publish package / build_and_publish (push) Successful in 21s
fix: add dummy publish script for website
2024-12-30 16:31:14 -03:00

35 lines
835 B
TOML

from_latest_tag = true
ignore_merge_commits = true
disable_changelog = false
disable_bump_commit = false
tag_prefix = "v"
generate_mono_repository_global_tag = true
branch_whitelist = []
skip_ci = "[skip ci]"
skip_untracked = false
pre_bump_hooks = []
post_bump_hooks = [
"git push",
"git push origin {{version_tag}}",
]
pre_package_bump_hooks = [
"echo 'bump package {{package}} to {{version}}'",
"sed -E -i 's/(\"version\":) \"[0-9.]{5}\"/\\1 \"{{version}}\"/gi' package.json",
"bun run ci:publish",
]
post_package_bump_hooks = []
[git_hooks]
[commit_types]
[changelog]
path = "CHANGELOG.md"
authors = []
[bump_profiles]
[packages]
"@mini-strap/core" = { path = "packages/core" }
"@mini-strap/components" = { path = "packages/components" }
"@mini-strap/website" = { path = "packages/website", public_api = false }