mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
feat(doc): move pipe intermediate
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": ["../../.eslintrc.json"],
|
||||
"extends": ["../../../.eslintrc.json"],
|
||||
"ignorePatterns": ["!**/*"],
|
||||
"overrides": [
|
||||
{
|
||||
@@ -5,7 +5,7 @@
|
||||
### Run Application
|
||||
|
||||
```bash
|
||||
npx nx serve pipe-intermediate
|
||||
npx nx serve angular-pipe-intermediate
|
||||
```
|
||||
|
||||
### Documentation and Instruction
|
||||
@@ -1,25 +1,25 @@
|
||||
{
|
||||
"name": "pipe-intermediate",
|
||||
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
||||
"name": "angular-pipe-intermediate",
|
||||
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
||||
"projectType": "application",
|
||||
"sourceRoot": "apps/pipe-intermediate/src",
|
||||
"sourceRoot": "apps/angular/pipe-intermediate/src",
|
||||
"prefix": "app",
|
||||
"targets": {
|
||||
"build": {
|
||||
"executor": "@angular-devkit/build-angular:browser",
|
||||
"outputs": ["{options.outputPath}"],
|
||||
"options": {
|
||||
"outputPath": "dist/apps/pipe-intermediate",
|
||||
"index": "apps/pipe-intermediate/src/index.html",
|
||||
"main": "apps/pipe-intermediate/src/main.ts",
|
||||
"polyfills": "apps/pipe-intermediate/src/polyfills.ts",
|
||||
"tsConfig": "apps/pipe-intermediate/tsconfig.app.json",
|
||||
"outputPath": "dist/apps/angular/pipe-intermediate",
|
||||
"index": "apps/angular/pipe-intermediate/src/index.html",
|
||||
"main": "apps/angular/pipe-intermediate/src/main.ts",
|
||||
"polyfills": "apps/angular/pipe-intermediate/src/polyfills.ts",
|
||||
"tsConfig": "apps/angular/pipe-intermediate/tsconfig.app.json",
|
||||
"inlineStyleLanguage": "scss",
|
||||
"assets": [
|
||||
"apps/pipe-intermediate/src/favicon.ico",
|
||||
"apps/pipe-intermediate/src/assets"
|
||||
"apps/angular/pipe-intermediate/src/favicon.ico",
|
||||
"apps/angular/pipe-intermediate/src/assets"
|
||||
],
|
||||
"styles": ["apps/pipe-intermediate/src/styles.scss"],
|
||||
"styles": ["apps/angular/pipe-intermediate/src/styles.scss"],
|
||||
"scripts": []
|
||||
},
|
||||
"configurations": {
|
||||
@@ -38,8 +38,8 @@
|
||||
],
|
||||
"fileReplacements": [
|
||||
{
|
||||
"replace": "apps/pipe-intermediate/src/environments/environment.ts",
|
||||
"with": "apps/pipe-intermediate/src/environments/environment.prod.ts"
|
||||
"replace": "apps/angular/pipe-intermediate/src/environments/environment.ts",
|
||||
"with": "apps/angular/pipe-intermediate/src/environments/environment.prod.ts"
|
||||
}
|
||||
],
|
||||
"outputHashing": "all"
|
||||
@@ -59,10 +59,10 @@
|
||||
"executor": "@angular-devkit/build-angular:dev-server",
|
||||
"configurations": {
|
||||
"production": {
|
||||
"browserTarget": "pipe-intermediate:build:production"
|
||||
"browserTarget": "angular-pipe-intermediate:build:production"
|
||||
},
|
||||
"development": {
|
||||
"browserTarget": "pipe-intermediate:build:development"
|
||||
"browserTarget": "angular-pipe-intermediate:build:development"
|
||||
}
|
||||
},
|
||||
"defaultConfiguration": "development"
|
||||
@@ -70,15 +70,15 @@
|
||||
"extract-i18n": {
|
||||
"executor": "@angular-devkit/build-angular:extract-i18n",
|
||||
"options": {
|
||||
"browserTarget": "pipe-intermediate:build"
|
||||
"browserTarget": "angular-pipe-intermediate:build"
|
||||
}
|
||||
},
|
||||
"lint": {
|
||||
"executor": "@nx/linter:eslint",
|
||||
"options": {
|
||||
"lintFilePatterns": [
|
||||
"apps/pipe-intermediate/**/*.ts",
|
||||
"apps/pipe-intermediate/**/*.html"
|
||||
"apps/angular/pipe-intermediate/**/*.ts",
|
||||
"apps/angular/pipe-intermediate/**/*.html"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../../dist/out-tsc",
|
||||
"outDir": "../../../dist/out-tsc",
|
||||
"types": [],
|
||||
"target": "ES2022",
|
||||
"useDefineForClassFields": false
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"extends": "../../../tsconfig.base.json",
|
||||
"files": [],
|
||||
"include": [],
|
||||
"references": [
|
||||
Reference in New Issue
Block a user