diff --git a/packages/scripts/src/commands/update-pkg.ts b/packages/scripts/src/commands/update-pkg.ts index 54d1132d..25e168eb 100644 --- a/packages/scripts/src/commands/update-pkg.ts +++ b/packages/scripts/src/commands/update-pkg.ts @@ -1,5 +1,5 @@ import { execCommand } from '../shared'; export async function updatePkg(args: string[] = ['--deep', '-u']) { - execCommand('npx', ['ncu', ...args], { stdio: 'inherit' }); + execCommand('npx', ['npm-check-updates', ...args], { stdio: 'inherit' }); }