chore: 整体优化

This commit is contained in:
wangxuefeng
2025-02-19 21:15:15 +08:00
parent 52a32bb31e
commit 19da7ce0dd
23 changed files with 22375 additions and 176 deletions

View 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('开始完成!');