We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 583e40a commit 87cbd97Copy full SHA for 87cbd97
2 files changed
.ncurc.json
taze.config.mts
@@ -1,15 +1,19 @@
1
import { defineConfig } from 'taze'
2
3
export default defineConfig({
4
- // Exclude these packages (add as needed).
5
- exclude: [],
+ // Exclude these packages.
+ exclude: [
6
+ 'all-the-package-names',
7
+ 'all-the-package-names-v1.3905.0',
8
+ 'eslint-plugin-unicorn'
9
+ ],
10
// Interactive mode disabled for automation.
11
interactive: false,
- // Use minimal logging similar to ncu loglevel.
12
+ // Use minimal logging.
13
loglevel: 'warn',
14
// Only update packages that have been stable for 7 days.
15
maturityPeriod: 7,
- // Update mode: 'latest' is similar to ncu's default behavior.
16
+ // Update mode: 'latest'.
17
mode: 'latest',
18
// Write to package.json automatically.
19
write: true
0 commit comments