mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-10-02 16:16:40 +08:00
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' });
|
|
}
|