projecte_ionic/node_modules/node-gyp/lib/rebuild.js
2022-02-09 18:30:03 +01:00

14 lines
314 B
JavaScript
Executable file

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