Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
314 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | 'use strict'
|
---|
| 2 |
|
---|
| 3 | function rebuild (gyp, argv, callback) {
|
---|
| 4 | gyp.todo.push(
|
---|
| 5 | { name: 'clean', args: [] }
|
---|
| 6 | , { name: 'configure', args: argv }
|
---|
| 7 | , { name: 'build', args: [] }
|
---|
| 8 | )
|
---|
| 9 | process.nextTick(callback)
|
---|
| 10 | }
|
---|
| 11 |
|
---|
| 12 | module.exports = rebuild
|
---|
| 13 | module.exports.usage = 'Runs "clean", "configure" and "build" all at once'
|
---|
Note:
See
TracBrowser
for help on using the repository browser.