mirror of https://github.com/lukechilds/node.git
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.
22 lines
472 B
22 lines
472 B
|
|
module.exports = exports = rebuild
|
|
|
|
exports.usage = 'Runs "clean", "configure" and "build" all at once'
|
|
|
|
var log = require('npmlog')
|
|
|
|
function rebuild (gyp, argv, callback) {
|
|
|
|
// first "clean"
|
|
gyp.commands.clean([], function (err) {
|
|
if (err) {
|
|
// don't bail
|
|
log.info('rebuild clean failed', err.stack);
|
|
}
|
|
|
|
gyp.commands.configure([], function (err) {
|
|
if (err) return callback(err);
|
|
gyp.commands.build([], callback);
|
|
});
|
|
});
|
|
}
|
|
|