nunta/scripts/clean.js
David Miller 591ec679dd update scripts with upath
now using upath within build scripts for better compatibility
2021-03-29 19:45:48 -04:00

8 lines
166 B
JavaScript

const sh = require('shelljs');
const upath = require('upath');
const destPath = upath.resolve(upath.dirname(__filename), '../dist');
sh.rm('-rf', `${destPath}/*`)