Skip to content

Commit

Permalink
deps: upgrade rimraf
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Feb 3, 2023
1 parent 7874c5b commit 3568fbf
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 41 deletions.
4 changes: 1 addition & 3 deletions lib/compiler/workspace-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ export class WorkspaceUtils {
if (!isDeleteEnabled) {
return;
}
await new Promise<void>((resolve, reject) =>
rimraf(dirPath, (err) => (err ? reject(err) : resolve())),
);
await rimraf(dirPath);
}
}
82 changes: 45 additions & 37 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"node-emoji": "1.11.0",
"ora": "5.4.1",
"os-name": "4.0.1",
"rimraf": "3.0.2",
"rimraf": "4.1.2",
"shelljs": "0.8.5",
"source-map-support": "0.5.21",
"tree-kill": "1.2.2",
Expand Down

0 comments on commit 3568fbf

Please sign in to comment.