challenge 5: http

This commit is contained in:
thomas laforge
2022-11-12 14:56:26 +01:00
parent 967df0216c
commit 0e405206ca
28 changed files with 618 additions and 26 deletions

View File

@@ -1,5 +1,7 @@
<h1>NgRx Effect vs Selector</h1>
> Author: Thomas Laforge
For this exercice, you will have a dashboard of activities displaying the name, the main teacher and a list of subtitutes.
## Information

View File

@@ -7,7 +7,9 @@
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:browser",
"outputs": ["{options.outputPath}"],
"outputs": [
"{options.outputPath}"
],
"options": {
"outputPath": "dist/apps/ngrx-1",
"index": "apps/ngrx-1/src/index.html",
@@ -15,10 +17,17 @@
"polyfills": "apps/ngrx-1/src/polyfills.ts",
"tsConfig": "apps/ngrx-1/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": ["apps/ngrx-1/src/favicon.ico", "apps/ngrx-1/src/assets"],
"styles": ["apps/ngrx-1/src/styles.scss"],
"assets": [
"apps/ngrx-1/src/favicon.ico",
"apps/ngrx-1/src/assets"
],
"styles": [
"apps/ngrx-1/src/styles.scss"
],
"scripts": [],
"allowedCommonJsDependencies": ["seedrandom"]
"allowedCommonJsDependencies": [
"seedrandom"
]
},
"configurations": {
"production": {
@@ -74,12 +83,17 @@
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["apps/ngrx-1/**/*.ts", "apps/ngrx-1/**/*.html"]
"lintFilePatterns": [
"apps/ngrx-1/**/*.ts",
"apps/ngrx-1/**/*.html"
]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"outputs": [
"{workspaceRoot}/coverage/{projectRoot}"
],
"options": {
"jestConfig": "apps/ngrx-1/jest.config.ts",
"passWithNoTests": true