6 lines
175 B
TypeScript
6 lines
175 B
TypeScript
import { execCommand } from '../shared';
|
|
|
|
export async function updatePkg(args: string[] = ['--deep', '-u']) {
|
|
execCommand('npx', ['ncu', ...args], { stdio: 'inherit' });
|
|
}
|