(themeConfig)
| 83 | } |
| 84 | |
| 85 | checkExecutableLocation(themeConfig) { |
| 86 | if (!themeConfig.configExists()) { |
| 87 | throw new Error( |
| 88 | `${ |
| 89 | 'You must have a '.red + 'config.json'.cyan |
| 90 | } file in your top level theme directory.`, |
| 91 | ); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | prepareResult(data) { |
| 96 | return JSON.stringify(data); |
no test coverage detected