function deriveCommand()

in app/launch/src/micronaut/creators/ToCli.js [1:14]


function deriveCommand(type) {
  switch (type) {
    case 'WEB':
      return 'create-app'
    case 'REST_API':
      return 'create-restapi'
    case 'PLUGIN':
      return 'create-plugin'
    case 'WEB_PLUGIN':
      return 'create-web-plugin'
    default:
      return `create-${type}`.toLowerCase()
  }
}