Files
soybean-admin-element-plus/packages/scripts/src/commands/prettier.ts
2023-10-21 17:30:30 +08:00

8 lines
203 B
TypeScript

import { execCommand } from '../shared';
export async function prettierWrite(writeGlob: string[]) {
await execCommand('npx', ['prettier', '--write', '.', ...writeGlob], {
stdio: 'inherit'
});
}