(msg)
| 99 | let total = dps.length; |
| 100 | let count = 0; |
| 101 | function done(msg) { |
| 102 | count++; |
| 103 | console.log(`${msg} [${count}/${total}]`); |
| 104 | if (count === total) { |
| 105 | // all done |
| 106 | resolve(true); |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | console.log('package install start...'); |
| 111 | dps.forEach((mv) => { |
no outgoing calls
no test coverage detected
searching dependent graphs…