Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ng-dev): correctly indent bullets in breaking changes and depreca…
…tions sections With this change we fix an issue where when breaking changes or deprecations messages contained bullets these were not indented correctly. Previously ``` ## Breaking Changes ### @angular/cli - Support for Node.js v12 has been removed as it will become EOL on 2022-04-30. Please use Node.js v14.15 or later. - Several changes in the Angular CLI commands and arguments handling. - `ng help` has been removed in favour of the `—-help` option. - `ng —-version` has been removed in favour of `ng version` and `ng v`. - Deprecated camel cased arguments are no longer supported. Ex. using `—-sourceMap` instead of `—-source-map` will result in an error. - `ng update`, `—-migrate-only` option no longer accepts a string of migration name, instead use `—-migrate-only -—name <migration-name>`. - `—-help json` help has been removed. ### @angular/cli | Commit | Type | Description | | -- | -- | -- | | [4ebfe0341](angular/angular-cli@4ebfe03) | feat | drop support for Node.js 12 | | [c0ca87656](angular/angular-cli@c0ca876) | fix | remove JSON serialized description from help output | | [2e0493130](angular/angular-cli@2e04931) | refactor | replace command line arguments parser | ### @angular-devkit/build-angular | Commit | Type | Description | | -- | -- | -- | | [e28c71597](angular/angular-cli@e28c715) | fix | ignore css only chunks during naming | ## Special Thanks Alan Agius and Joey Perrott ``` Now ``` ## Breaking Changes ### @angular/cli - Support for Node.js v12 has been removed as it will become EOL on 2022-04-30. Please use Node.js v14.15 or later. - Several changes in the Angular CLI commands and arguments handling. - `ng help` has been removed in favour of the `—-help` option. - `ng —-version` has been removed in favour of `ng version` and `ng v`. - Deprecated camel cased arguments are no longer supported. Ex. using `—-sourceMap` instead of `—-source-map` will result in an error. - `ng update`, `—-migrate-only` option no longer accepts a string of migration name, instead use `—-migrate-only -—name <migration-name>`. - `—-help json` help has been removed. ### @angular/cli | Commit | Type | Description | | -- | -- | -- | | [4ebfe0341](angular/angular-cli@4ebfe03) | feat | drop support for Node.js 12 | | [c0ca87656](angular/angular-cli@c0ca876) | fix | remove JSON serialized description from help output | | [2e0493130](angular/angular-cli@2e04931) | refactor | replace command line arguments parser | ### @angular-devkit/build-angular | Commit | Type | Description | | -- | -- | -- | | [e28c71597](angular/angular-cli@e28c715) | fix | ignore css only chunks during naming | ## Special Thanks Alan Agius and Joey Perrott ```
- Loading branch information