mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 17:35:26 +00:00
22 lines
334 B
JavaScript
22 lines
334 B
JavaScript
|
|
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)
|
|
|
|
}
|