Files
moc/packages/scripts/src/commands/update-pkg.ts
T
2026-08-13 12:31:16 +08:00

6 lines
189 B
TypeScript

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