We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfc6da4 commit a90f4b0Copy full SHA for a90f4b0
src/core/path.ts
@@ -31,7 +31,7 @@ export const kSkipHidden = /[/\\][\.]/;
31
32
export function removeIfExists(file: string) {
33
if (existsSync(file)) {
34
- Deno.removeSync(file, { recursive: true });
+ safeRemoveSync(file, { recursive: true });
35
}
36
37
0 commit comments