()
| 260 | } |
| 261 | |
| 262 | function ensureWrapperProject() { |
| 263 | wrapperProjectFiles.forEach((relativePath) => { |
| 264 | const fullPath = path.join(wrapperProjectDir, relativePath); |
| 265 | ensureFileExists( |
| 266 | fullPath, |
| 267 | `Missing Harmony wrapper file: ${relativeToProject(fullPath)}`, |
| 268 | ); |
| 269 | }); |
| 270 | } |
| 271 | |
| 272 | function parseArgs(argv) { |
| 273 | const parsed = {}; |
no test coverage detected