2
0
mirror of https://github.com/tenrok/vue-context.git synced 2026-06-21 20:40:33 +03:00
This commit is contained in:
rawilk
2020-08-30 13:13:55 -05:00
parent a562986be9
commit 55e816ce41
14 changed files with 10525 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env node
const fs = require('fs');
const filesToDelete = [
__dirname + '/mix-manifest.json',
];
filesToDelete.forEach(file => {
try {
fs.unlinkSync(file);
} catch (e) {}
});
fs.rmdirSync(__dirname + '/dist', { recursive: true });
console.log('All extra files cleaned up!');