(cb)
| 71 | |
| 72 | // 2# |
| 73 | function launchTARModules(cb) { |
| 74 | if (!modules.tar_modules) return cb() |
| 75 | |
| 76 | eachLimit(Object.keys(modules.tar_modules), 1, function(module_name, next) { |
| 77 | TAR.start(CLI, module_name, next) |
| 78 | }, function() { |
| 79 | return cb ? cb(null) : false; |
| 80 | }); |
| 81 | } |
| 82 | |
| 83 | launchNPMModules(cb) |
| 84 | } |
no test coverage detected
searching dependent graphs…