Files
javascript-packages/cog.toml
2025-04-21 01:56:39 +02:00

44 lines
944 B
TOML

from_latest_tag = false
ignore_merge_commits = false
disable_changelog = false
disable_bump_commit = false
generate_mono_repository_global_tag = true
generate_mono_repository_package_tags = true
branch_whitelist = [
"main",
"release/**"
]
skip_ci = "[skip ci]"
skip_untracked = false
pre_bump_hooks = []
post_bump_hooks = []
pre_package_bump_hooks = [
"echo 'upgrading {{package}}' to {{version}}",
"npm version {{version}}"
]
post_package_bump_hooks = []
tag_prefix = "v"
[git_hooks.commit-msg]
script = """#!/bin/sh
set -e
cog verify --file $1
cog check
"""
[commit_types]
[changelog]
path = "CHANGELOG.md"
authors = [
{ signature = "T. R. Bernstein", username = "trbernstein" }
]
[bump_profiles]
[packages]
typescript-config = { path = "packages/typescript-config" }
vitest-config = { path = "packages/vitest-config" }
prettier-config = { path = "packages/prettier-config" }
core-extensions = { path = "packages/core-extensions" }