SIGN IN SIGN UP

A powerful cross-platform UI toolkit for building native-quality iOS, Android, and Progressive Web Apps with HTML, CSS, and JavaScript.

52437 0 1 TypeScript
2018-03-02 23:57:52 -06:00
const fs = require('fs-extra');
const path = require('path');
const ROOT_DIR = path.join(__dirname, '..');
2018-03-02 23:57:52 -06:00
const cleanDirs = [
path.join(ROOT_DIR, 'dist')
2018-03-02 23:57:52 -06:00
];
2018-03-02 23:57:52 -06:00
cleanDirs.forEach(dir => {
fs.emptyDirSync(dir);
2018-03-02 23:57:52 -06:00
});