mirror of
https://github.com/Afilmory/afilmory
synced 2026-04-24 14:55:29 +00:00
13 lines
241 B
TypeScript
13 lines
241 B
TypeScript
import { defineConfig } from 'nbump'
|
|
|
|
export default defineConfig({
|
|
leading: ['npm run build'],
|
|
publish: true,
|
|
allowDirty: true,
|
|
allowedBranches: ['dev/*', 'main'],
|
|
withTags: false,
|
|
tag: false,
|
|
commit: false,
|
|
push: false,
|
|
})
|