Skip to content
Snippets Groups Projects
Commit 63d8b798 authored by tamaina's avatar tamaina
Browse files

do `yarn cache clean --all` in clean-all.js

parent 4903af95
No related branches found
No related tags found
No related merge requests found
const { execSync } = require('child_process');
const fs = require('fs');
(async () => {
......@@ -12,5 +13,9 @@ const fs = require('fs');
fs.rmSync(__dirname + '/../built', { recursive: true, force: true });
fs.rmSync(__dirname + '/../node_modules', { recursive: true, force: true });
fs.rmSync(__dirname + '/../.yarn/cache', { recursive: true, force: true });
execSync('yarn cache clean --all', {
cwd: __dirname + '/../',
stdio: 'inherit',
});
})();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment