6 lines
155 B
JavaScript
6 lines
155 B
JavaScript
var
|
|
shell = require('shelljs'),
|
|
path = require('path')
|
|
|
|
shell.rm('-rf', path.resolve(__dirname, '../dist'))
|
|
console.log(' Cleaned build artifacts.\n')
|