function printValidationResults()

in packages/create-react-kotlin-app/createReactApp.js [115:121]


function printValidationResults(results) {
  if (typeof results !== 'undefined') {
    results.forEach((error) => {
      console.error(chalk.red(`  *  ${error}`));
    });
  }
}