0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.141.21.106


Current Path : /proc/self/root/usr/share/node-gyp/lib/
Upload File :
Current File : //proc/self/root/usr/share/node-gyp/lib/clean.js

module.exports = exports = clean

exports.usage = 'Removes any generated build files and the "out" dir'

/**
 * Module dependencies.
 */

var rm = require('rimraf')
var log = require('npmlog')


function clean (gyp, argv, callback) {

  // Remove the 'build' dir
  var buildDir = 'build'

  log.verbose('clean', 'removing "%s" directory', buildDir)
  rm(buildDir, callback)

}