mirror of
https://github.com/tenrok/vue-context.git
synced 2026-06-21 20:40:33 +03:00
wip
This commit is contained in:
Executable
+17
@@ -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!');
|
||||
Reference in New Issue
Block a user