Skip to content

Commit 9efe922

Browse files
committed
fix(command): update command to use 'npm-check-updates' instead of 'ncu'
1 parent 304db33 commit 9efe922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/command/ncu.ts

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 ncu(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)