1'use strict' 2 3function rebuild (gyp, argv, callback) { 4 gyp.todo.push( 5 { name: 'clean', args: [] } 6 , { name: 'configure', args: argv } 7 , { name: 'build', args: [] } 8 ) 9 process.nextTick(callback) 10} 11 12module.exports = rebuild 13module.exports.usage = 'Runs "clean", "configure" and "build" all at once' 14