Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import fs from 'fs-extra';
import path from 'path';
import { fileURLToPath } from 'url';
// Setup directory
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const root = path.resolve(__dirname, '../');
const distPath = path.resolve(root, 'dist');
try {
const exists = await fs.pathExists(distPath);
if (exists) {
await fs.emptyDir(distPath);
console.log('clean dist/: cleaned');
} else {
console.log('clean dist/: skipped, not found (will be created on build)');
}
} catch (err) {
console.error('clean dist/: error -', err.message);
process.exit(1);
}
|