first commit

This commit is contained in:
Your Name
2026-09-08 11:40:15 +08:00
commit a5353f7eb5
9568 changed files with 1646214 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import fs from 'node:fs'
import path from 'node:path'
const root = path.resolve(process.cwd())
const dirs = ['dist', path.join('node_modules', '.vite')]
for (const dir of dirs) {
const full = path.join(root, dir)
if (fs.existsSync(full)) {
fs.rmSync(full, { recursive: true })
console.log('Removed:', dir)
}
}
console.log('Clean done.')