mirror of
https://github.com/ayangweb/BongoCat.git
synced 2026-03-12 17:51:48 +08:00
16 lines
297 B
TypeScript
16 lines
297 B
TypeScript
/* eslint-disable no-template-curly-in-string */
|
|
import type { Config } from 'release-it'
|
|
|
|
export default {
|
|
git: {
|
|
commitMessage: 'v${version}',
|
|
tagName: 'v${version}',
|
|
},
|
|
npm: {
|
|
publish: false,
|
|
},
|
|
hooks: {
|
|
'after:bump': 'tsx scripts/release.ts',
|
|
},
|
|
} satisfies Config
|