Opal-Estate-Pro/node_modules/node-gyp/lib/rebuild.js
2019-09-13 11:27:52 +07:00

15 lines
308 B
JavaScript
Executable File

module.exports = exports = rebuild
exports.usage = 'Runs "clean", "configure" and "build" all at once'
function rebuild (gyp, argv, callback) {
gyp.todo.push(
{ name: 'clean', args: [] }
, { name: 'configure', args: argv }
, { name: 'build', args: [] }
)
process.nextTick(callback)
}