How to group by app name with platform as suffix instead? - nstudio/xplat GitHub Wiki

Group by app name

The default for all the app generators adds the platform as a prefix to the name for clarity. ie:

apps/
  electron-myapp
  ionic-myapp
  nativescript-myapp
  web-myapp

If you'd rather switch your workspace to group by app name first you can use the --groupByName option at least once when you generate an app. ie:

ng g app myapp --groupByName

Using that option at least once with an app generator will persist the setting and all app's generated in your workspace will subsequently always by grouped by app name first. ie:

apps/
  myapp-electron
  myapp-ionic
  myapp-nativescript
  myapp-web