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