This commit is contained in:
thomas laforge
2022-11-05 21:05:00 +01:00
parent a19fd00f19
commit 349a0cb00e
17 changed files with 21 additions and 21 deletions

View File

@@ -17,7 +17,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/Angular--red?logo=angular" alt="Angular"/> <img src="https://img.shields.io/badge/Angular--red?logo=angular" alt="Angular"/>
<a href="./apps/projection/README.md" target="_blank"><img src="https://img.shields.io/badge/1-Projection-red" alt="Projection"/></a> <a href="./apps/projection/README.md" target="_blank"><img src="https://img.shields.io/badge/1-Projection-red" alt="Projection"/></a>
<a href="./apps/ng-for-enhance/README.md" target="_blank"><img src="https://img.shields.io/badge/2-Directive enhance-red" alt="Directive enhance"/></a> <a href="./apps/ngfor-enhancement/README.md" target="_blank"><img src="https://img.shields.io/badge/2-Directive enhancement-red" alt="Directive enhancemen"/></a>
<img src="https://img.shields.io/badge/NgRx--blueviolet" alt="NgRx"/> <img src="https://img.shields.io/badge/NgRx--blueviolet" alt="NgRx"/>

View File

@@ -1,4 +1,4 @@
<h1>Directive enhance</h1> <h1>Directive enhancement</h1>
## Information ## Information
@@ -37,11 +37,11 @@ The goal is to **improve the ngFor directive**
1. Fork the project 1. Fork the project
2. clone it 2. clone it
3. npm install 3. npm install
4. **nx serve ng-for-enhance** 4. **nx serve ngfor-enhancement**
5. _...work On it_ 5. _...work On it_
6. Commit your work 6. Commit your work
7. Submit a PR with a title beginning with **Answer:3** that I will review and other dev can review. 7. Submit a PR with a title beginning with **Answer:3** that I will review and other dev can review.
<a href="https://github.com/tomalaforge/angular-challenges/pulls?q=label%3A3+label%3Aanswer" target="_blank"><img src="https://img.shields.io/badge/-Solutions-green" alt="Directive enhance"/></a> <a href="https://github.com/tomalaforge/angular-challenges/pulls?q=label%3A3+label%3Aanswer" target="_blank"><img src="https://img.shields.io/badge/-Solutions-green" alt="Directive enhancement"/></a>
_You can ask any question on_ <a href="https://twitter.com/laforge_toma" target="_blank"><img src="./../../logo/twitter.svg" height=20px alt="Twitter"/></a> _You can ask any question on_ <a href="https://twitter.com/laforge_toma" target="_blank"><img src="./../../logo/twitter.svg" height=20px alt="Twitter"/></a>

View File

@@ -1,25 +1,25 @@
{ {
"name": "ng-for-enhance", "name": "ngfor-enhancement",
"$schema": "../../node_modules/nx/schemas/project-schema.json", "$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "application", "projectType": "application",
"sourceRoot": "apps/ng-for-enhance/src", "sourceRoot": "apps/ngfor-enhancement/src",
"prefix": "app", "prefix": "app",
"targets": { "targets": {
"build": { "build": {
"executor": "@angular-devkit/build-angular:browser", "executor": "@angular-devkit/build-angular:browser",
"outputs": ["{options.outputPath}"], "outputs": ["{options.outputPath}"],
"options": { "options": {
"outputPath": "dist/apps/ng-for-enhance", "outputPath": "dist/apps/ngfor-enhancement",
"index": "apps/ng-for-enhance/src/index.html", "index": "apps/ngfor-enhancement/src/index.html",
"main": "apps/ng-for-enhance/src/main.ts", "main": "apps/ngfor-enhancement/src/main.ts",
"polyfills": "apps/ng-for-enhance/src/polyfills.ts", "polyfills": "apps/ngfor-enhancement/src/polyfills.ts",
"tsConfig": "apps/ng-for-enhance/tsconfig.app.json", "tsConfig": "apps/ngfor-enhancement/tsconfig.app.json",
"inlineStyleLanguage": "scss", "inlineStyleLanguage": "scss",
"assets": [ "assets": [
"apps/ng-for-enhance/src/favicon.ico", "apps/ngfor-enhancement/src/favicon.ico",
"apps/ng-for-enhance/src/assets" "apps/ngfor-enhancement/src/assets"
], ],
"styles": ["apps/ng-for-enhance/src/styles.scss"], "styles": ["apps/ngfor-enhancement/src/styles.scss"],
"scripts": [] "scripts": []
}, },
"configurations": { "configurations": {
@@ -38,8 +38,8 @@
], ],
"fileReplacements": [ "fileReplacements": [
{ {
"replace": "apps/ng-for-enhance/src/environments/environment.ts", "replace": "apps/ngfor-enhancement/src/environments/environment.ts",
"with": "apps/ng-for-enhance/src/environments/environment.prod.ts" "with": "apps/ngfor-enhancement/src/environments/environment.prod.ts"
} }
], ],
"outputHashing": "all" "outputHashing": "all"
@@ -59,10 +59,10 @@
"executor": "@angular-devkit/build-angular:dev-server", "executor": "@angular-devkit/build-angular:dev-server",
"configurations": { "configurations": {
"production": { "production": {
"browserTarget": "ng-for-enhance:build:production" "browserTarget": "ngfor-enhancement:build:production"
}, },
"development": { "development": {
"browserTarget": "ng-for-enhance:build:development" "browserTarget": "ngfor-enhancement:build:development"
} }
}, },
"defaultConfiguration": "development" "defaultConfiguration": "development"
@@ -70,15 +70,15 @@
"extract-i18n": { "extract-i18n": {
"executor": "@angular-devkit/build-angular:extract-i18n", "executor": "@angular-devkit/build-angular:extract-i18n",
"options": { "options": {
"browserTarget": "ng-for-enhance:build" "browserTarget": "ngfor-enhancement:build"
} }
}, },
"lint": { "lint": {
"executor": "@nrwl/linter:eslint", "executor": "@nrwl/linter:eslint",
"options": { "options": {
"lintFilePatterns": [ "lintFilePatterns": [
"apps/ng-for-enhance/**/*.ts", "apps/ngfor-enhancement/**/*.ts",
"apps/ng-for-enhance/**/*.html" "apps/ngfor-enhancement/**/*.html"
] ]
} }
} }

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB