fix: ensure safe removal of node_modules directory in build process

This commit is contained in:
Huakun Shen 2025-01-24 08:00:17 -05:00
parent e719176b9c
commit fd41247d37
No known key found for this signature in database

View File

@ -55,7 +55,10 @@ for (const p of fs.readdirSync(tmpDistTemplatesPath)) {
// Replace local template with remote schema
patchManifestJsonSchema(pkgJsonPath)
// remove node_modules
fs.rmdirSync(path.join(distPath, "templates", p, "node_modules"), { recursive: true })
const nodeModulesPath = path.join(distPath, "templates", p, "node_modules")
if (fs.existsSync(nodeModulesPath)) {
fs.rmdirSync(nodeModulesPath, { recursive: true })
}
}
}