diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2022-12-20 13:05:36 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-20 13:05:36 +0900 |
| commit | 2fe86fd86937b47969447d91bb987b7e0233afd5 (patch) | |
| tree | af191c8be7193a1e5b254f1e857b14e8023f90d2 /scripts/clean-all.js | |
| parent | :art: (diff) | |
| download | misskey-2fe86fd86937b47969447d91bb987b7e0233afd5.tar.gz misskey-2fe86fd86937b47969447d91bb987b7e0233afd5.tar.bz2 misskey-2fe86fd86937b47969447d91bb987b7e0233afd5.zip | |
enhance: Vite HMR while yarn dev, and more build tuning (#9361)
* enhance: Vite HMR while yarn dev, and more build tuning
* use localhost
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'scripts/clean-all.js')
| -rw-r--r-- | scripts/clean-all.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/clean-all.js b/scripts/clean-all.js index 456b88032b..49b9957657 100644 --- a/scripts/clean-all.js +++ b/scripts/clean-all.js @@ -12,4 +12,5 @@ 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 }); })(); |