Files
zn-ai/build/scripts/clean.js
2025-11-22 21:17:40 +08:00

22 lines
558 B
JavaScript

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())