mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
correct readme
This commit is contained in:
@@ -20,7 +20,7 @@ This goal of this project is to help you get better at Angular and NgRx buy reso
|
|||||||
|
|
||||||
<img src="https://img.shields.io/badge/NgRx--blueviolet" alt="NgRx"/>
|
<img src="https://img.shields.io/badge/NgRx--blueviolet" alt="NgRx"/>
|
||||||
|
|
||||||
<a href="./apps/ngrx-1/README.md" target="_blank"><img src="https://img.shields.io/badge/1-reducers-blueviolet" alt="Projection"/></a>
|
<a href="./apps/ngrx-1/README.md" target="_blank"><img src="https://img.shields.io/badge/1-effect vs selector-blueviolet" alt="Effect vs Selector"/></a>
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<h1>NgRx 1</h1>
|
<h1>NgRx Effect vs Selector</h1>
|
||||||
|
|
||||||
For this exercice, you will have a dashboard of activities displaying the name, the main teacher and a list of subtitutes.
|
For this exercice, you will have a dashboard of activities displaying the name, the main teacher and a list of subtitutes.
|
||||||
|
|
||||||
|
|||||||
24
package-lock.json
generated
24
package-lock.json
generated
@@ -20,6 +20,7 @@
|
|||||||
"@angular/router": "~14.2.0",
|
"@angular/router": "~14.2.0",
|
||||||
"@ngneat/falso": "^6.1.0",
|
"@ngneat/falso": "^6.1.0",
|
||||||
"@ngrx/effects": "^14.3.2",
|
"@ngrx/effects": "^14.3.2",
|
||||||
|
"@ngrx/router-store": "^14.3.2",
|
||||||
"@ngrx/store": "^14.3.2",
|
"@ngrx/store": "^14.3.2",
|
||||||
"@nrwl/angular": "15.0.7",
|
"@nrwl/angular": "15.0.7",
|
||||||
"rxjs": "~7.5.0",
|
"rxjs": "~7.5.0",
|
||||||
@@ -4334,6 +4335,21 @@
|
|||||||
"rxjs": "^6.5.3 || ^7.5.0"
|
"rxjs": "^6.5.3 || ^7.5.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@ngrx/router-store": {
|
||||||
|
"version": "14.3.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@ngrx/router-store/-/router-store-14.3.2.tgz",
|
||||||
|
"integrity": "sha512-3FU/fADoMCLjv9vFXp1Xq+W1JGVQbfPDp8gzzsuBoQSXlh3MnUbXJdeODzt0h6GDk4FtpeJnsR1R9x+Fh2cFZg==",
|
||||||
|
"dependencies": {
|
||||||
|
"tslib": "^2.0.0"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"@angular/common": "^14.0.0",
|
||||||
|
"@angular/core": "^14.0.0",
|
||||||
|
"@angular/router": "^14.0.0",
|
||||||
|
"@ngrx/store": "14.3.2",
|
||||||
|
"rxjs": "^6.5.3 || ^7.5.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@ngrx/store": {
|
"node_modules/@ngrx/store": {
|
||||||
"version": "14.3.2",
|
"version": "14.3.2",
|
||||||
"resolved": "https://registry.npmjs.org/@ngrx/store/-/store-14.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@ngrx/store/-/store-14.3.2.tgz",
|
||||||
@@ -21548,6 +21564,14 @@
|
|||||||
"tslib": "^2.0.0"
|
"tslib": "^2.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"@ngrx/router-store": {
|
||||||
|
"version": "14.3.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@ngrx/router-store/-/router-store-14.3.2.tgz",
|
||||||
|
"integrity": "sha512-3FU/fADoMCLjv9vFXp1Xq+W1JGVQbfPDp8gzzsuBoQSXlh3MnUbXJdeODzt0h6GDk4FtpeJnsR1R9x+Fh2cFZg==",
|
||||||
|
"requires": {
|
||||||
|
"tslib": "^2.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"@ngrx/store": {
|
"@ngrx/store": {
|
||||||
"version": "14.3.2",
|
"version": "14.3.2",
|
||||||
"resolved": "https://registry.npmjs.org/@ngrx/store/-/store-14.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/@ngrx/store/-/store-14.3.2.tgz",
|
||||||
|
|||||||
@@ -21,6 +21,7 @@
|
|||||||
"@angular/router": "~14.2.0",
|
"@angular/router": "~14.2.0",
|
||||||
"@ngneat/falso": "^6.1.0",
|
"@ngneat/falso": "^6.1.0",
|
||||||
"@ngrx/effects": "^14.3.2",
|
"@ngrx/effects": "^14.3.2",
|
||||||
|
"@ngrx/router-store": "^14.3.2",
|
||||||
"@ngrx/store": "^14.3.2",
|
"@ngrx/store": "^14.3.2",
|
||||||
"@nrwl/angular": "15.0.7",
|
"@nrwl/angular": "15.0.7",
|
||||||
"rxjs": "~7.5.0",
|
"rxjs": "~7.5.0",
|
||||||
|
|||||||
Reference in New Issue
Block a user