g6/bin/mkdir-dist.js
2018-06-05 23:58:10 +08:00

8 lines
200 B
JavaScript

#!/usr/bin/env node
const path = require('path');
const shelljs = require('shelljs');
const pathname = path.join(process.cwd(), './dist');
shelljs.rm('-rf', pathname);
shelljs.mkdir('-p', pathname);