chore: 整体优化
This commit is contained in:
7
apps/designer/scripts/clean.mjs
Normal file
7
apps/designer/scripts/clean.mjs
Normal file
@@ -0,0 +1,7 @@
|
||||
import { rm } from 'fs/promises';
|
||||
console.log('开始清理...');
|
||||
await rm('node_modules', { recursive: true, force: true });
|
||||
await rm('dist', { recursive: true, force: true });
|
||||
await rm('package-lock.json', { recursive: true, force: true });
|
||||
await rm('pnpm-lock.yaml', { recursive: true, force: true });
|
||||
console.log('开始完成!');
|
||||
Reference in New Issue
Block a user