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.

52430 0 1 TypeScript
2018-03-02 23:57:52 -06:00
const fs = require('fs-extra');
const path = require('path');
2018-03-02 23:57:52 -06:00
const cleanDirs = [
2018-08-08 11:13:39 +02:00
'dist',
2019-06-19 21:33:50 +02:00
'css'
2018-03-02 23:57:52 -06:00
];
2018-03-02 23:57:52 -06:00
cleanDirs.forEach(dir => {
const cleanDir = path.join(__dirname, '../', dir);
fs.removeSync(cleanDir);
});