UNPKG

201 BJavaScriptView Raw
1#!/usr/bin/env node
2const path = require('path');
3const shelljs = require('shelljs');
4
5const pathname = path.join(process.cwd(), './dist');
6shelljs.rm('-rf', pathname);
7shelljs.mkdir('-p', pathname);
8