Skip to content

Commit 058c7b0

Browse files
committed
feat(doc): move pipe stuling
1 parent a0844c8 commit 058c7b0

File tree

14 files changed

+24
-18
lines changed

14 files changed

+24
-18
lines changed

apps/styling/.eslintrc.json renamed to apps/angular/styling/.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": ["../../.eslintrc.json"],
2+
"extends": ["../../../.eslintrc.json"],
33
"ignorePatterns": ["!**/*"],
44
"overrides": [
55
{

apps/styling/README.md renamed to apps/angular/styling/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
### Run Application
66

77
```bash
8-
npx nx serve styling
8+
npx nx serve angular-styling
99
```
1010

1111
### Documentation and Instruction
1212

13-
Challenge documentation is [here](https://angular-challenges.vercel.app/challenges/angular/13-styling/).
13+
Challenge documentation is [here](https://angular-challenges.vercel.app/challenges/angular/13-angular-styling/).

apps/styling/project.json renamed to apps/angular/styling/project.json

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,25 @@
11
{
2-
"name": "styling",
3-
"$schema": "../../node_modules/nx/schemas/project-schema.json",
2+
"name": "angular-styling",
3+
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
44
"projectType": "application",
5-
"sourceRoot": "apps/styling/src",
5+
"sourceRoot": "apps/angular/styling/src",
66
"prefix": "app",
77
"targets": {
88
"build": {
99
"executor": "@angular-devkit/build-angular:browser",
1010
"outputs": ["{options.outputPath}"],
1111
"options": {
12-
"outputPath": "dist/apps/styling",
13-
"index": "apps/styling/src/index.html",
14-
"main": "apps/styling/src/main.ts",
12+
"outputPath": "dist/apps/angular/styling",
13+
"index": "apps/angular/styling/src/index.html",
14+
"main": "apps/angular/styling/src/main.ts",
1515
"polyfills": ["zone.js"],
16-
"tsConfig": "apps/styling/tsconfig.app.json",
16+
"tsConfig": "apps/angular/styling/tsconfig.app.json",
1717
"inlineStyleLanguage": "scss",
18-
"assets": ["apps/styling/src/favicon.ico", "apps/styling/src/assets"],
19-
"styles": ["apps/styling/src/styles.scss"],
18+
"assets": [
19+
"apps/angular/styling/src/favicon.ico",
20+
"apps/angular/styling/src/assets"
21+
],
22+
"styles": ["apps/angular/styling/src/styles.scss"],
2023
"scripts": []
2124
},
2225
"configurations": {
@@ -50,25 +53,28 @@
5053
"executor": "@angular-devkit/build-angular:dev-server",
5154
"configurations": {
5255
"production": {
53-
"browserTarget": "styling:build:production"
56+
"browserTarget": "angular-styling:build:production"
5457
},
5558
"development": {
56-
"browserTarget": "styling:build:development"
59+
"browserTarget": "angular-styling:build:development"
5760
}
5861
},
5962
"defaultConfiguration": "development"
6063
},
6164
"extract-i18n": {
6265
"executor": "@angular-devkit/build-angular:extract-i18n",
6366
"options": {
64-
"browserTarget": "styling:build"
67+
"browserTarget": "angular-styling:build"
6568
}
6669
},
6770
"lint": {
6871
"executor": "@nx/linter:eslint",
6972
"outputs": ["{options.outputFile}"],
7073
"options": {
71-
"lintFilePatterns": ["apps/styling/**/*.ts", "apps/styling/**/*.html"]
74+
"lintFilePatterns": [
75+
"apps/angular/styling/**/*.ts",
76+
"apps/angular/styling/**/*.html"
77+
]
7278
}
7379
}
7480
},
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)