SourceTermAnalysisSystem_vue/node_modules/@antv/hierarchy/bin/mkdir-dist.js

9 lines
201 B
JavaScript
Raw Normal View History

2026-05-15 10:22:44 +08:00
#!/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);