()
| 1352 | }, |
| 1353 | |
| 1354 | printDetailedHelp() { |
| 1355 | let markdownColor = new MarkdownColor(); |
| 1356 | let filePath = getDetailedHelpPath(this.path); |
| 1357 | |
| 1358 | if (Blueprint._existsSync(filePath)) { |
| 1359 | return markdownColor.renderFile(filePath, { indent: ' ' }); |
| 1360 | } |
| 1361 | return ''; |
| 1362 | }, |
| 1363 | |
| 1364 | getJson(verbose) { |
| 1365 | let json = {}; |
nothing calls this directly
no test coverage detected
searching dependent graphs…