You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
334 B

module.exports = exports = clean
exports.usage = 'Removes any generated build files and the "out" dir'
/**
* Module dependencies.
*/
var rm = require('rimraf')
function clean (gyp, argv, callback) {
// Remove the 'build' dir
var buildDir = 'build'
gyp.verbose('removing "build" directory')
rm(buildDir, callback)
}