591ec679dd
now using upath within build scripts for better compatibility
8 lines
166 B
JavaScript
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}/*`)
|
|
|