Some checks failed
Publish package / build_and_publish (push) Failing after 0s
update workflows update workflows update workflows update workflows update config add cog config
39 lines
915 B
TOML
39 lines
915 B
TOML
from_latest_tag = true
|
|
ignore_merge_commits = false
|
|
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 = []
|
|
pre_package_bump_hooks = [
|
|
"echo 'bump package {{package}} to {{version}}'",
|
|
"sed -E -i 's/(\"version\":) \"[0-9.]{5}\"/\\1 \"{{version}}\"/gi' package.json",
|
|
]
|
|
post_package_bump_hooks = []
|
|
|
|
[git_hooks]
|
|
|
|
[commit_types]
|
|
|
|
[changelog]
|
|
path = "CHANGELOG.md"
|
|
authors = []
|
|
|
|
[bump_profiles.latest]
|
|
pre_package_bump_hooks = [
|
|
"bun run ci:publish --tag latest",
|
|
]
|
|
|
|
[bump_profiles.next]
|
|
pre_package_bump_hooks = [
|
|
"bun run ci:publish --tag next",
|
|
]
|
|
|
|
[packages]
|
|
"@mini-strap/core" = { path = "packages/core" }
|
|
"@mini-strap/components" = { path = "packages/components" }
|
|
"@mini-strap/website" = { path = "packages/website", public_api = false }
|