2
0
Files
fe.wfc.user/packages/scripts/src/commands/update-pkg.ts
2024-11-14 11:06:38 +08:00

6 lines
175 B
TypeScript

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