blob: 609817665e2dba3f066482d2560eaba169a269d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
'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'
|