(options)
| 21 | } |
| 22 | |
| 23 | async run(options) { |
| 24 | const platform = this.getPlatformInfo(); |
| 25 | const nodeVersion = this.getNodeJsVersion(); |
| 26 | const version = this.getCliVersion(); |
| 27 | const theme = await this.getThemeInfo(); |
| 28 | const stencil = await this.getStencilInfo(); |
| 29 | const info = { |
| 30 | platform, |
| 31 | version, |
| 32 | nodeVersion, |
| 33 | stencil, |
| 34 | theme, |
| 35 | }; |
| 36 | const result = this.prepareResult(info); |
| 37 | await this.printResult(result, options); |
| 38 | } |
| 39 | |
| 40 | getPlatformInfo() { |
| 41 | return { |
nothing calls this directly
no test coverage detected