๐Ÿ“ฆ YunYouJun / docs

๐Ÿ“„ bump.config.ts ยท 16 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16import { defineConfig } from 'bumpp'

const packages = [
  'docs',
]

export default defineConfig({
  all: true,
  files: [
    'package.json',
    'docs/package.json',
    ...packages.map(name => `packages/${name}/package.json`),
  ],
  execute: 'npm run changelog',
})