UNPKG

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