MyRepo-Ums/node_modules/node-gyp/lib/rebuild.js

13 lines
281 B
JavaScript
Raw Permalink Normal View History

2024-01-19 10:09:11 +00:00
'use strict'
async function rebuild (gyp, argv) {
gyp.todo.push(
{ name: 'clean', args: [] }
, { name: 'configure', args: argv }
, { name: 'build', args: [] }
)
}
module.exports = rebuild
module.exports.usage = 'Runs "clean", "configure" and "build" all at once'