mirror of
https://github.com/atom/atom.git
synced 2026-01-13 17:07:55 -05:00
10 lines
252 B
JavaScript
10 lines
252 B
JavaScript
const fs = require('fs-extra');
|
|
const CONFIG = require('../config');
|
|
|
|
module.exports = function() {
|
|
if (fs.existsSync(CONFIG.buildOutputPath)) {
|
|
console.log(`Cleaning ${CONFIG.buildOutputPath}`);
|
|
fs.removeSync(CONFIG.buildOutputPath);
|
|
}
|
|
};
|