Skip to content

Commit ba219ba

Browse files
authored
Merge pull request #102 from lakatoshv/v3.7.2_UpdateClientsToLatests
V3.7.2 update clients to latests
2 parents ed667f5 + ccf46b6 commit ba219ba

File tree

288 files changed

+22097
-30581
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

288 files changed

+22097
-30581
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,3 +106,6 @@
106106
/BlogWebApp/Aspire/Blog.Aspire/Blog.Aspire.ServiceDefaults/obj
107107
/BlogWebApp/Aspire/Blog.Aspire/Blog.Aspire.AppHost/bin/Debug/net9.0
108108
/BlogWebApp/Aspire/Blog.Aspire/Blog.Aspire.AppHost/obj
109+
/BlogWebApp/Blog.Web/ClientApp/.angular/cache/20.0.1/BlogAngular
110+
/BlogWebApp/Blog.Web/ClientApp/dist/BlogAngular
111+
/Clients/BlogRazor/bin/Debug/net9.0

BlogWebApp/Blog.Web/ClientApp/.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ trim_trailing_whitespace = true
1010

1111
[*.ts]
1212
quote_type = single
13+
ij_typescript_use_double_quotes = false
1314

1415
[*.md]
1516
max_line_length = off

BlogWebApp/Blog.Web/ClientApp/.gitignore

Lines changed: 537 additions & 40 deletions
Large diffs are not rendered by default.
Lines changed: 42 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,59 @@
1-
# ClientApp
1+
# BlogAngular
22

3-
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 15.1.2.
3+
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 20.0.1.
44

55
## Development server
66

7-
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.
7+
To start a local development server, run:
8+
9+
```bash
10+
ng serve
11+
```
12+
13+
Once the server is running, open your browser and navigate to `http://localhost:4200/`. The application will automatically reload whenever you modify any of the source files.
814

915
## Code scaffolding
1016

11-
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
17+
Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
18+
19+
```bash
20+
ng generate component component-name
21+
```
22+
23+
For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run:
24+
25+
```bash
26+
ng generate --help
27+
```
1228

13-
## Build
29+
## Building
1430

15-
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
31+
To build the project run:
32+
33+
```bash
34+
ng build
35+
```
36+
37+
This will compile your project and store the build artifacts in the `dist/` directory. By default, the production build optimizes your application for performance and speed.
1638

1739
## Running unit tests
1840

19-
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
41+
To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command:
42+
43+
```bash
44+
ng test
45+
```
2046

2147
## Running end-to-end tests
2248

23-
Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
49+
For end-to-end (e2e) testing, run:
50+
51+
```bash
52+
ng e2e
53+
```
54+
55+
Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
2456

25-
## Further help
57+
## Additional Resources
2658

27-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
59+
For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.

BlogWebApp/Blog.Web/ClientApp/angular.json

Lines changed: 30 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": 1,
44
"newProjectRoot": "projects",
55
"projects": {
6-
"ClientApp": {
6+
"BlogAngular": {
77
"projectType": "application",
88
"schematics": {
99
"@schematics/angular:component": {
@@ -15,89 +15,85 @@
1515
"prefix": "app",
1616
"architect": {
1717
"build": {
18-
"builder": "@angular-devkit/build-angular:browser",
18+
"builder": "@angular/build:application",
1919
"options": {
20-
"outputPath": "dist/client-app",
21-
"index": "src/index.html",
22-
"main": "src/main.ts",
23-
"polyfills": [
24-
"zone.js"
25-
],
20+
"browser": "src/main.ts",
2621
"tsConfig": "tsconfig.app.json",
2722
"inlineStyleLanguage": "scss",
2823
"assets": [
29-
"src/favicon.ico",
30-
"src/assets"
24+
{
25+
"glob": "**/*",
26+
"input": "public"
27+
}
3128
],
3229
"styles": [
3330
"src/styles.scss",
3431
"node_modules/ngx-toastr/toastr.css"
3532
],
36-
"scripts": []
33+
"server": "src/main.server.ts",
34+
"outputMode": "server",
35+
"ssr": {
36+
"entry": "src/server.ts"
37+
}
3738
},
3839
"configurations": {
3940
"production": {
4041
"budgets": [
4142
{
4243
"type": "initial",
43-
"maximumWarning": "500kb",
44-
"maximumError": "1mb"
44+
"maximumWarning": "500kB",
45+
"maximumError": "1MB"
4546
},
4647
{
4748
"type": "anyComponentStyle",
48-
"maximumWarning": "2kb",
49-
"maximumError": "4kb"
49+
"maximumWarning": "64kB",
50+
"maximumError": "128kB"
5051
}
5152
],
5253
"outputHashing": "all"
5354
},
5455
"development": {
55-
"buildOptimizer": false,
5656
"optimization": false,
57-
"vendorChunk": true,
5857
"extractLicenses": false,
59-
"sourceMap": true,
60-
"namedChunks": true
58+
"sourceMap": true
6159
}
6260
},
6361
"defaultConfiguration": "production"
6462
},
6563
"serve": {
66-
"builder": "@angular-devkit/build-angular:dev-server",
64+
"builder": "@angular/build:dev-server",
6765
"configurations": {
6866
"production": {
69-
"browserTarget": "ClientApp:build:production"
67+
"buildTarget": "BlogAngular:build:production"
7068
},
7169
"development": {
72-
"browserTarget": "ClientApp:build:development"
70+
"buildTarget": "BlogAngular:build:development"
7371
}
7472
},
7573
"defaultConfiguration": "development"
7674
},
7775
"extract-i18n": {
78-
"builder": "@angular-devkit/build-angular:extract-i18n",
79-
"options": {
80-
"browserTarget": "ClientApp:build"
81-
}
76+
"builder": "@angular/build:extract-i18n"
8277
},
8378
"test": {
84-
"builder": "@angular-devkit/build-angular:karma",
79+
"builder": "@angular/build:karma",
8580
"options": {
86-
"polyfills": [
87-
"zone.js",
88-
"zone.js/testing"
89-
],
9081
"tsConfig": "tsconfig.spec.json",
9182
"inlineStyleLanguage": "scss",
9283
"assets": [
93-
"src/favicon.ico",
94-
"src/assets"
84+
{
85+
"glob": "**/*",
86+
"input": "public"
87+
}
9588
],
9689
"styles": [
9790
"src/styles.scss",
9891
"node_modules/ngx-toastr/toastr.css"
9992
],
100-
"scripts": []
93+
"scripts": [
94+
"node_modules/jquery/dist/jquery.js",
95+
"node_modules/bootstrap/dist/js/bootstrap.js"
96+
]
10197
}
10298
}
10399
}

0 commit comments

Comments
 (0)