13 lines
184 B
TypeScript
13 lines
184 B
TypeScript
import { defineConfig } from 'bumpp'
|
|
|
|
export default defineConfig({
|
|
release: 'prompt',
|
|
all: true,
|
|
commit: true,
|
|
tag: true,
|
|
push: true,
|
|
files: [
|
|
'package.json',
|
|
],
|
|
})
|