| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/ModusCreateOrg/ionic/functional-inputs/angular/scripts/clean.js | [Back] [Original] |
const fs = require('fs-extra');
const path = require('path');
const ROOT_DIR = path.join(__dirname, '..');
const cleanDirs = [
path.join(ROOT_DIR, 'dist')
];
cleanDirs.forEach(dir => {
fs.emptyDirSync(dir);
});
| Web Proxy Viewer | New URL | Original Page |