mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
10 lines
248 B
JavaScript
10 lines
248 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)
|
|
}
|
|
}
|