Skip to content

Commit ac330c3

Browse files
author
John Reeves
committed
fix: use removeSync instead of unlinkSync for removing directories
Old version was a bug because frequently (always?) the directory was not empty. Also no need to check if it exists, removeSync silently returns on non-existent folders.
1 parent d221f93 commit ac330c3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/index.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,7 @@ export class TypeScriptPlugin {
227227

228228
// copy development dependencies during packaging
229229
if (isPackaging) {
230-
if (fs.existsSync(outModulesPath)) {
231-
fs.unlinkSync(outModulesPath)
232-
}
230+
fs.removeSync(outModulesPath)
233231

234232
fs.copySync(
235233
path.resolve('node_modules'),

0 commit comments

Comments
 (0)