-
-
Notifications
You must be signed in to change notification settings - Fork 874
Expand file tree
/
Copy pathtaze.config.js
More file actions
30 lines (29 loc) · 776 Bytes
/
taze.config.js
File metadata and controls
30 lines (29 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { defineConfig } from 'taze'
export default defineConfig({
// ignore packages from bumping
exclude: [
'tailwindcss',
'crossbell',
'@excalidraw/excalidraw',
'tailwind-variants',
'daisyui',
],
// fetch latest package info from registry without cache
force: true,
// write to package.json
write: true,
// run `npm install` or `yarn install` right after bumping
install: true,
// ignore paths for looking for package.json in monorepo
ignorePaths: ['**/node_modules/**', '**/test/**'],
// override with different bumping mode for each package
packageMode: {
typescript: 'major',
},
// disable checking for "overrides" package.json field
depFields: {
overrides: false,
},
recursive: true,
mode: 'latest',
})