Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove blockers that cause 1-start branch ngrx to fail for Angular 13+ users #36

Open
wants to merge 2 commits into
base: 1-start
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,17 @@ Its also possible to install the modules as usual using npm:

This should take a couple of minutes. If there are issues, please post the complete error message in the Questions section of the course.

# Manually adding ngrx dependencies

In versions of Angular 13 and greater, it may be neccesary to manually ng add ngrx dependencies in order have all of the required ngrx dependencies needed for this application to run. You may need to run all of these commands in the root directory after your initial npm install :

ng add @ngrx/store
ng add @ngrx/router-store
ng add @ngrx/effects
ng add @ngrx/data
ng add @ngrx/store-devtools


# To Run the Development Backend Server

We can start the sample application backend with the following command:
Expand Down
6 changes: 0 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@
"@angular/platform-browser": "^13.0.3",
"@angular/platform-browser-dynamic": "^13.0.3",
"@angular/router": "^13.0.3",
"@ngrx/data": "^8.0.1",
"@ngrx/effects": "^8.0.1",
"@ngrx/entity": "^8.0.1",
"@ngrx/router-store": "^8.0.1",
"@ngrx/store": "^8.0.1",
"@ngrx/store-devtools": "^8.0.1",
"body-parser": "^1.18.2",
"core-js": "^2.4.1",
"express": "^4.16.2",
Expand Down