Ejemplo n.º 1
0
 function (t) {
   signer.exit(
     function (err) {
       t.equal(err, null, 'clean shutdown')
       t.end()
     }
   )
 }
Ejemplo n.º 2
0
 cc.enqueue([variant, sassFile], function(err,r){
   if (err) return console.log("an error occured compiling sass:", err);
   if (--toRun === 0) {
     cc.exit();
   }
 })
exports.shutdown = function() {
  if (cc) {
    cc.exit();
    cc = undefined;
  }
};