mirror of
https://gitee.com/honghuangdc/soybean-admin-element-plus.git
synced 2026-05-15 03:37:57 +00:00
8 lines
203 B
TypeScript
8 lines
203 B
TypeScript
import { execCommand } from '../shared';
|
|
|
|
export async function prettierWrite(writeGlob: string[]) {
|
|
await execCommand('npx', ['prettier', '--write', '.', ...writeGlob], {
|
|
stdio: 'inherit'
|
|
});
|
|
}
|