nunta/scripts/clean.js

8 lines
166 B
JavaScript
Raw Normal View History

2020-04-07 00:19:58 +02:00
const sh = require('shelljs');
const upath = require('upath');
2020-04-07 00:19:58 +02:00
const destPath = upath.resolve(upath.dirname(__filename), '../dist');
2020-04-07 00:19:58 +02:00
sh.rm('-rf', `${destPath}/*`)