NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/hierarchy/bin/mkdir-dist.js
2023-09-14 14:47:11 +08:00

9 lines
201 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);