Skip to content

Commit

Permalink
doc: CXSPA-8104 Adjust docs with steps required for migration when An…
Browse files Browse the repository at this point in the history
…gular 17.3.8 is installed (SAP#19166)
  • Loading branch information
pawelfras authored Aug 30, 2024
1 parent 5567128 commit b8f4704
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/migration/2211_19/2211-migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Follow the [Angular guidelines for upgrading from v16 to v17](https://update.ang
Please also update other 3rd part dependencies from Angular ecosystem to versions compatible with Angular 17, e.g. `@ng-select/ng-select@12`, `@ngrx/store@17`, `ngx-infinite-scroll@17`:

```bash
ng update @angular/core@17 @angular/cli@17 @ng-select/ng-select@12 @ngrx/store@17 ngx-infinite-scroll@17 --force
ng update @angular/core@17 @angular/cli@17 @ng-select/ng-select@12 @ngrx/store@17 ngx-infinite-scroll@17 rxjs@7.8.1 --force
git add .
git commit -m "update angular 17 and 3rd party deps angular 17 compatible"
```
Expand All @@ -46,6 +46,12 @@ git add .
git commit -m "add @angular-devkit/schematics@17 to dev dependencies"
```

If `@angular-devkit/core` is not listed under the `devDependencies` in the `package.json` file, please execute the following commands:
```bash
npm i @angular-devkit/core@17 --save-dev --force
git add .
git commit -m "add @angular-devkit/core@17 to dev dependencies"
```
### Run Spartacus update

After successfully updating the application to Angular 17, execute this command to initiate the Spartacus update process.
Expand Down

0 comments on commit b8f4704

Please sign in to comment.