(languages, options)
| 126 | } |
| 127 | |
| 128 | async function buildLanguages(languages, options) { |
| 129 | log("Writing languages."); |
| 130 | await Promise.all( |
| 131 | languages.map(async(lang) => { |
| 132 | await buildNodeLanguage(lang, options); |
| 133 | process.stdout.write("."); |
| 134 | }) |
| 135 | ); |
| 136 | log(""); |
| 137 | } |
| 138 | |
| 139 | const CORE_FILES = [ |
| 140 | "LICENSE", |
no test coverage detected
searching dependent graphs…