From c70c2d214771a61c120fd9d76a74bd1ae7e968b2 Mon Sep 17 00:00:00 2001 From: Soybean Date: Mon, 27 Oct 2025 17:41:40 +0800 Subject: [PATCH] fix(scripts): update command to use 'npm-check-updates' instead of 'ncu' --- packages/scripts/src/commands/update-pkg.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' }); }