Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

15 строки
308 B

  1. module.exports = exports = rebuild
  2. exports.usage = 'Runs "clean", "configure" and "build" all at once'
  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. }