Skip to content

Commit b0bd227

Browse files
committed
chore(deps): exclude non-existent npm workspace packages from taze
Add @npmcli/docs, @npmcli/mock-globals, and @npmcli/mock-registry to taze exclusions. These are internal npm CLI workspace packages that don't exist on the npm registry and caused 404 errors during dependency update checks. The vendored npm in node-smol-builder doesn't include these workspace directories (only docs exists as content), so they cannot be updated via registry lookups.
1 parent 16e80da commit b0bd227

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

taze.config.mts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@ import { defineConfig } from 'taze'
22

33
export default defineConfig({
44
// Exclude these packages (migrated from .ncurc.json reject list).
5-
exclude: ['eslint-plugin-unicorn', 'terminal-link', 'yargs-parser'],
5+
exclude: [
6+
'eslint-plugin-unicorn',
7+
'terminal-link',
8+
'yargs-parser',
9+
// Vendored npm workspace packages that don't exist on registry.
10+
'@npmcli/docs',
11+
'@npmcli/mock-globals',
12+
'@npmcli/mock-registry',
13+
],
614
// Interactive mode disabled for automation.
715
interactive: false,
816
// Use minimal logging similar to ncu loglevel.

0 commit comments

Comments
 (0)