Skip to content

Commit

Permalink
chore: upgrade rimraf to version 4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mjeanroy committed Mar 11, 2023
1 parent b560c64 commit 0055e2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"jasmine": "3.10.0",
"jasmine-core": "3.10.1",
"prettier": "2.8.4",
"rimraf": "3.0.2",
"rimraf": "4.4.0",
"rollup": "3.19.1",
"rollup-plugin-prettier": "3.0.0",
"rollup-plugin-strip-banner": "3.0.0",
Expand Down
6 changes: 2 additions & 4 deletions scripts/clean/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
const rimraf = require('rimraf');
const config = require('../config');

module.exports = function clean(done) {
rimraf(config.dist, (err) => (
done(err)
));
module.exports = function clean() {
return rimraf(config.dist);
};

0 comments on commit 0055e2b

Please sign in to comment.