SourceTermAnalysisSystem_vue/node_modules/@antv/hierarchy/bin/mkdir-dist.js
2026-05-15 10:22:44 +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);