Skip to content

Commit 8dc17e6

Browse files
committed
fix(scripts): update command to use 'npm-check-updates' instead of 'ncu'
1 parent 6011557 commit 8dc17e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { execCommand } from '../shared';
22

33
export async function updatePkg(args: string[] = ['--deep', '-u']) {
4-
execCommand('npx', ['ncu', ...args], { stdio: 'inherit' });
4+
execCommand('npx', ['npm-check-updates', ...args], { stdio: 'inherit' });
55
}

0 commit comments

Comments
 (0)