clean.js 527 B

12345678910111213141516171819
  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. const toClean = [
  9. path.resolve(__dirname, '../build'),
  10. path.resolve(__dirname, '../lib'),
  11. path.resolve(__dirname, '../tsconfig.tsbuildinfo'),
  12. ];
  13. toClean.forEach(ph => {
  14. if (fs.existsSync(ph))
  15. fs.rm(ph, { recursive: true }, err => { if (err) console.warn(`Failed to delete ${ph}: ${err}`); });
  16. });