Skip to content

Commit

Permalink
fix: move to synchronouse deletion of unnecessary files (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
magicmatatjahu authored Feb 9, 2022
1 parent 3eedc72 commit 939d396
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hooks/01_removeNotRelevantParts.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ module.exports = {
maxBusyTries: 3
};

rimraf(jsDir, opts, callback);
rimraf(cssDir, opts, callback);
rimraf.sync(jsDir, opts, callback);
rimraf.sync(cssDir, opts, callback);
}
}
};

0 comments on commit 939d396

Please sign in to comment.