feat: 新增包文件

This commit is contained in:
duanshuwen
2025-11-15 22:41:50 +08:00
parent 7b65193e5c
commit 7ada85f175
104 changed files with 11273 additions and 1 deletions

21
scripts/clean.js Normal file
View File

@@ -0,0 +1,21 @@
const fs = require('fs')
const path = require('path')
function cleanDirectory(dirPath) {
const resolvedPath = path.resolve(dirPath)
const parentDir = path.basename(path.dirname(resolvedPath))
if (parentDir !== 'packages') {
console.error(`Error: Directory "${resolvedPath}" is not inside a "packages" folder`)
return
}
const distPath = path.join(resolvedPath, 'dist')
if (fs.existsSync(distPath)) {
fs.rmSync(distPath, { recursive: true, force: true })
console.log(`deleted: ${distPath}`)
}
}
cleanDirectory(process.cwd())