cleanBuild.js 259 B

123456789
  1. const fs = require('fs');
  2. const path = require('path');
  3. const fse = require('fs-extra');
  4. const source = path.join(__dirname, '..', 'src', 'Masuit.MyBlogs.Core', 'wwwroot', 'dashboard', 'UEditorPlus');
  5. if (fs.existsSync(source)) {
  6. fse.remove(source);
  7. }