clean.js 914 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /**
  2. * Copyright (c) 2021 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Michal Malý <malym@ibt.cas.cz>
  5. */
  6. const fs = require('fs');
  7. const path = require('path');
  8. function removeDir(dirPath) {
  9. for (const ent of fs.readdirSync(dirPath)) {
  10. const entryPath = path.join(dirPath, ent);
  11. remove(entryPath);
  12. }
  13. fs.rmdirSync(dirPath);
  14. }
  15. function remove(entryPath) {
  16. const st = fs.statSync(entryPath);
  17. if (st.isDirectory())
  18. removeDir(entryPath);
  19. else
  20. fs.unlinkSync(entryPath);
  21. }
  22. const toClean = [
  23. path.resolve(__dirname, '../build'),
  24. path.resolve(__dirname, '../lib'),
  25. path.resolve(__dirname, '../tsconfig.tsbuildinfo'),
  26. ];
  27. toClean.forEach(ph => {
  28. if (fs.existsSync(ph)) {
  29. try {
  30. remove(ph);
  31. } catch (err) {
  32. console.warn(`Cleanup failed: ${err}`);
  33. }
  34. }
  35. });