* @param {{object[]}} questions * @returns {Promise }
(questions)
| 140 | * @returns {Promise<object>} |
| 141 | */ |
| 142 | async askQuestions(questions) { |
| 143 | return questions.length ? this._inquirer.prompt(questions) : {}; |
| 144 | } |
| 145 | |
| 146 | updateApiHost(stencilConfig, cliOptions) { |
| 147 | const host = cliOptions.apiHost || API_HOST; |
no outgoing calls
no test coverage detected