diff --git a/packages/@ionic/cli/CHANGELOG.md b/packages/@ionic/cli/CHANGELOG.md index d1c440d90..26f61eb5f 100644 --- a/packages/@ionic/cli/CHANGELOG.md +++ b/packages/@ionic/cli/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.2.1](https://github.com/ionic-team/ionic-cli/compare/@ionic/cli@7.2.0...@ionic/cli@7.2.1) (2025-03-18) + + +### Bug Fixes + +* **angular:** change default project type to Standalone ([#5104](https://github.com/ionic-team/ionic-cli/issues/5104)) ([cea5728](https://github.com/ionic-team/ionic-cli/commit/cea5728c8b228ab336a98bee5655364e720336a4)) + + + + + # [7.2.0](https://github.com/ionic-team/ionic-cli/compare/@ionic/cli@7.1.6...@ionic/cli@7.2.0) (2024-01-02) diff --git a/packages/@ionic/cli/package.json b/packages/@ionic/cli/package.json index 4f62812d2..d6fa27f6e 100644 --- a/packages/@ionic/cli/package.json +++ b/packages/@ionic/cli/package.json @@ -1,6 +1,6 @@ { "name": "@ionic/cli", - "version": "7.2.0", + "version": "7.2.1", "description": "A tool for creating and developing Ionic Framework mobile apps.", "homepage": "https://ionicframework.com", "author": "Ionic Team (https://ionicframework.com) ", 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', } ], }); diff --git a/packages/cli-scripts/CHANGELOG.md b/packages/cli-scripts/CHANGELOG.md index 0357684a5..f6611e9e2 100644 --- a/packages/cli-scripts/CHANGELOG.md +++ b/packages/cli-scripts/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.1.75](https://github.com/ionic-team/ionic-cli/compare/cli-scripts@2.1.74...cli-scripts@2.1.75) (2025-03-18) + +**Note:** Version bump only for package cli-scripts + + + + + ## [2.1.74](https://github.com/ionic-team/ionic-cli/compare/cli-scripts@2.1.73...cli-scripts@2.1.74) (2024-01-02) **Note:** Version bump only for package cli-scripts diff --git a/packages/cli-scripts/package.json b/packages/cli-scripts/package.json index 828df7e4f..c472ef2ba 100644 --- a/packages/cli-scripts/package.json +++ b/packages/cli-scripts/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "cli-scripts", - "version": "2.1.74", + "version": "2.1.75", "bin": { "ionic-cli-scripts": "./bin/ionic-cli-scripts" }, @@ -16,7 +16,7 @@ "main": "./dist/index.js", "types": "./dist/index.d.ts", "dependencies": { - "@ionic/cli": "7.2.0", + "@ionic/cli": "7.2.1", "@ionic/cli-framework": "6.0.1", "@ionic/utils-fs": "3.1.7", "ansi-styles": "^4.0.0",