Skip to content

Commit bf589e7

Browse files
authored
release: 14.0.0 (#18)
* chore: update vue app to latest * chore: update react app to latest * chore: update svelte app to latest * chore: update angular app to latest * update to react 19 * chore: update to use 14 prerelease (#19) * chore: update binaries to use published Cypress 14 binary (#20)
1 parent 1c431d4 commit bf589e7

Some content is hidden

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

58 files changed

+12858
-10237
lines changed

angular/my-awesome-app/.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

angular/my-awesome-app/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# See http://help.github.com/ignore-files/ for more about ignoring files.
1+
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
22

33
# Compiled output
44
/dist

angular/my-awesome-app/.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"configurations": [
55
{
66
"name": "ng serve",
7-
"type": "pwa-chrome",
7+
"type": "chrome",
88
"request": "launch",
99
"preLaunchTask": "npm: start",
1010
"url": "http://localhost:4200/"

angular/my-awesome-app/.vscode/settings.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

angular/my-awesome-app/README.md

Lines changed: 41 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,59 @@
11
# MyAwesomeApp
22

3-
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 14.2.4.
3+
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 19.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.

angular/my-awesome-app/angular.json

Lines changed: 23 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,20 @@
1111
"prefix": "app",
1212
"architect": {
1313
"build": {
14-
"builder": "@angular-devkit/build-angular:browser",
14+
"builder": "@angular-devkit/build-angular:application",
1515
"options": {
1616
"outputPath": "dist/my-awesome-app",
1717
"index": "src/index.html",
18-
"main": "src/main.ts",
19-
"polyfills": "src/polyfills.ts",
18+
"browser": "src/main.ts",
19+
"polyfills": [
20+
"zone.js"
21+
],
2022
"tsConfig": "tsconfig.app.json",
2123
"assets": [
22-
"src/favicon.ico",
23-
"src/assets"
24+
{
25+
"glob": "**/*",
26+
"input": "public"
27+
}
2428
],
2529
"styles": [
2630
"src/styles.css"
@@ -32,30 +36,21 @@
3236
"budgets": [
3337
{
3438
"type": "initial",
35-
"maximumWarning": "500kb",
36-
"maximumError": "1mb"
39+
"maximumWarning": "500kB",
40+
"maximumError": "1MB"
3741
},
3842
{
3943
"type": "anyComponentStyle",
40-
"maximumWarning": "2kb",
41-
"maximumError": "4kb"
42-
}
43-
],
44-
"fileReplacements": [
45-
{
46-
"replace": "src/environments/environment.ts",
47-
"with": "src/environments/environment.prod.ts"
44+
"maximumWarning": "4kB",
45+
"maximumError": "8kB"
4846
}
4947
],
5048
"outputHashing": "all"
5149
},
5250
"development": {
53-
"buildOptimizer": false,
5451
"optimization": false,
55-
"vendorChunk": true,
5652
"extractLicenses": false,
57-
"sourceMap": true,
58-
"namedChunks": true
53+
"sourceMap": true
5954
}
6055
},
6156
"defaultConfiguration": "production"
@@ -73,21 +68,21 @@
7368
"defaultConfiguration": "development"
7469
},
7570
"extract-i18n": {
76-
"builder": "@angular-devkit/build-angular:extract-i18n",
77-
"options": {
78-
"buildTarget": "my-awesome-app:build"
79-
}
71+
"builder": "@angular-devkit/build-angular:extract-i18n"
8072
},
8173
"test": {
8274
"builder": "@angular-devkit/build-angular:karma",
8375
"options": {
84-
"main": "src/test.ts",
85-
"polyfills": "src/polyfills.ts",
76+
"polyfills": [
77+
"zone.js",
78+
"zone.js/testing"
79+
],
8680
"tsConfig": "tsconfig.spec.json",
87-
"karmaConfig": "karma.conf.js",
8881
"assets": [
89-
"src/favicon.ico",
90-
"src/assets"
82+
{
83+
"glob": "**/*",
84+
"input": "public"
85+
}
9186
],
9287
"styles": [
9388
"src/styles.css"

0 commit comments

Comments
 (0)