diff --git a/.env.pullrequest b/.env.pullrequest new file mode 100644 index 000000000..a1fb90294 --- /dev/null +++ b/.env.pullrequest @@ -0,0 +1,4 @@ +DOCS_BRANCH='main' +DOCS_BRANCH_TYPE='pull request' + +DOCS_PR_NUMBER='2420' diff --git a/docs/home/installation/angular.md b/docs/home/installation/angular.md index 61e49f890..f3d5af96c 100644 --- a/docs/home/installation/angular.md +++ b/docs/home/installation/angular.md @@ -13,12 +13,14 @@ import TabItem from '@theme/TabItem'; ### Peer dependencies -Both `@angular/core` and `@angular/forms` are peer dependencies which means they must be installed before iX. +Both `@angular/core` and `@angular/forms` are peer dependencies that you must install before iX. + +For the exact version requirements, see the [peerDependencies in package.json](https://github.com/siemens/ix/blob/main/packages/angular/package.json) (search for `peerDependencies` in that file). ```json "peerDependencies": { - "@angular/core": ">=18.2.13", - "@angular/forms": ">=18.2.13", + "@angular/core": ">=20", + "@angular/forms": ">=20", } ```