Blame view

node_modules/node-gyp/lib/clean.js 378 Bytes
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  
  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)
  
  }