mirror of
https://forge.chapril.org/tykayn/caisse-bliss
synced 2025-06-20 01:44:42 +02:00
12 lines
281 B
JavaScript
12 lines
281 B
JavaScript
'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'
|