From 1225ea2b9575c21066bb494c24a087a9e318c04e Mon Sep 17 00:00:00 2001 From: Brandy Smith <6577830+brandyscarney@users.noreply.github.com> Date: Mon, 3 Mar 2025 16:03:07 -0500 Subject: [PATCH] fix(angular): change default project type to Standalone --- packages/@ionic/cli/src/commands/start.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/@ionic/cli/src/commands/start.ts b/packages/@ionic/cli/src/commands/start.ts index 8328e3efc..2beb5db70 100644 --- a/packages/@ionic/cli/src/commands/start.ts +++ b/packages/@ionic/cli/src/commands/start.ts @@ -512,17 +512,17 @@ Use the ${input( const angularMode = await this.env.prompt({ type: 'list', name: 'standalone', - message: 'Would you like to build your app with NgModules or Standalone Components? \n Standalone components are a new way to build with Angular that simplifies the way you build your app. \n To learn more, visit the Angular docs:\n https://angular.io/guide/standalone-components\n\n', + message: 'Would you like to build your app with Standalone Components or NgModules? \n Standalone components are the default way to build with Angular that simplifies the way you build your app. \n To learn more, visit the Angular docs:\n https://angular.dev/guide/components\n\n', choices: () => [ - { - name: 'NgModules', - short: 'NgModules', - value: 'ngModules', - }, { name: 'Standalone', short: 'Standalone', value: 'standalone', + }, + { + name: 'NgModules', + short: 'NgModules', + value: 'ngModules', } ], });