Files
ASHEBShop-h5/node_modules/node-pre-gyp/lib/reinstall.js
T
2017-05-10 17:19:39 +08:00

14 lines
276 B
JavaScript

"use strict";
module.exports = exports = rebuild;
exports.usage = 'Runs "clean" and "install" at once';
function rebuild (gyp, argv, callback) {
gyp.todo.unshift(
{ name: 'clean', args: [] },
{ name: 'install', args: [] }
);
process.nextTick(callback);
}