/
githubmirror
/
atom
Обзор
Документация
Войти
/
githubmirror
/
atom
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
script/lib/clean-output-directory.js
9 строк
252 B
Rafael Oleza
Reformat all JS files using prettier
31 май 2019, 19:33
31 май 2019, 19:33
7f3f040
Код
Авторство
О чём код?
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); } };