()
| 53 | } |
| 54 | |
| 55 | async getThemeInfo() { |
| 56 | this.checkExecutableLocation(this._themeConfig); |
| 57 | const rawConfig = await this._themeConfig.getRawConfig(); |
| 58 | const { |
| 59 | name, |
| 60 | version, |
| 61 | /* eslint-disable camelcase */ |
| 62 | template_engine, |
| 63 | css_compiler, |
| 64 | meta: { author_name }, |
| 65 | /* eslint-enable camelcase */ |
| 66 | } = rawConfig; |
| 67 | return { |
| 68 | name, |
| 69 | version, |
| 70 | template_engine, |
| 71 | css_compiler, |
| 72 | author_name, |
| 73 | }; |
| 74 | } |
| 75 | |
| 76 | async getStencilInfo() { |
| 77 | const { apiHost, normalStoreUrl, port } = await this._stencilConfigManager.read(); |
no test coverage detected