Skip to content

Main #57

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

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open

Main #57

Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Upgrade to Angular 17
  • Loading branch information
jhades committed Nov 16, 2023
commit 4a64e7af132078ddd28d9a5aacf4020051b0f5bb
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@

This repository contains the code of the video course [Ngrx (with NgRx Data) - The Complete Guide](https://angular-university.io/course/ngrx-course).

This course repository is updated to Angular v16:
This course repository is updated to Angular v17:

![Ngrx (with NgRx Data) - The Complete Guide](https://angular-university.s3-us-west-1.amazonaws.com/course-images/ngrx-v2.png)


# Installation pre-requisites

For taking the course we recommend installing Node 18 Long Term Support Edition (LTE).
Expand All @@ -33,7 +34,7 @@ With the following command the angular-cli will be installed globally in your ma

We can install the master branch using the following commands:

git clone https://github.com/angular-university/angular-ngrx-course.git
git clone https://github.com/angular-university/ngrx-course.git

This repository is made of several separate npm modules, that are installable separately. For example, to run the au-input module, we can do the following:

Expand Down
6 changes: 3 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,18 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "angular-ngrx-course:build"
"buildTarget": "angular-ngrx-course:build"
},
"configurations": {
"production": {
"browserTarget": "angular-ngrx-course:build:production"
"buildTarget": "angular-ngrx-course:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "angular-ngrx-course:build"
"buildTarget": "angular-ngrx-course:build"
}
},
"test": {
Expand Down
Loading