We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f069ef commit 96e2413Copy full SHA for 96e2413
extensions/postinstall.js
@@ -20,7 +20,7 @@ function processRoot() {
20
if (!toKeep.has(name)) {
21
const filePath = path.join(root, name);
22
console.log(`Removed ${filePath}`);
23
- fs.rmdirSync(filePath, { recursive: true });
+ fs.rmSync(filePath, { recursive: true });
24
}
25
26
0 commit comments