Skip to content

Commit a347764

Browse files
authored
Merge branch 'ganatan:master' into master
2 parents fd0917e + a347fee commit a347764

File tree

175 files changed

+77862
-40647
lines changed

Some content is hidden

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

175 files changed

+77862
-40647
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Angular 14 & React 18 Examples Bootstrap
1+
# Angular 16 & React 18 Examples Bootstrap
22

33
<table>
44
<tr>
@@ -10,9 +10,9 @@
1010

1111
it's part of a repo series designed
1212

13-
to create a **Web Application with Angular 14**
13+
to create a **Web Application with Angular 16**
1414

15-
* Featuring [**Angular 14.0.5**](https://github.com/angular/angular/releases) & [**Angular CLI 14.0.5**](https://github.com/angular/angular-cli/releases/)
15+
* Featuring [**Angular 16.0.4**](https://github.com/angular/angular/releases) & [**Angular CLI 16.0.4**](https://github.com/angular/angular-cli/releases/)
1616

1717

1818
* See the [**Live demo**](#angular-live-demo), Test the repo with [**Quick start**](#angular-quick-start) and for more information Read the step by step [**Tutorial**](#angular-tutorial) or read the [**Getting started**](#angular-getting-started)

angular/.browserslistrc

-16
This file was deleted.

angular/.eslintrc.json

+15-17
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,13 @@
88
"files": [
99
"*.ts"
1010
],
11-
"parserOptions": {
12-
"project": [
13-
"tsconfig.json"
14-
],
15-
"createDefaultProgram": true
16-
},
1711
"extends": [
12+
"eslint:recommended",
13+
"plugin:@typescript-eslint/recommended",
1814
"plugin:@angular-eslint/recommended",
1915
"plugin:@angular-eslint/template/process-inline-templates"
2016
],
2117
"rules": {
22-
"no-undefined": "error",
23-
"no-var": "error",
24-
"prefer-const": "error",
25-
"func-names": "error",
26-
"id-length": "error",
27-
"newline-before-return": "error",
28-
"space-before-blocks": "error",
29-
"no-alert": "error",
3018
"@angular-eslint/directive-selector": [
3119
"error",
3220
{
@@ -50,9 +38,19 @@
5038
"*.html"
5139
],
5240
"extends": [
53-
"plugin:@angular-eslint/template/recommended"
41+
"plugin:@angular-eslint/template/recommended",
42+
"plugin:@angular-eslint/template/accessibility"
5443
],
55-
"rules": {}
44+
"rules": {
45+
"no-undefined": "error",
46+
"no-var": "error",
47+
"prefer-const": "error",
48+
"func-names": "error",
49+
"id-length": "error",
50+
"newline-before-return": "error",
51+
"space-before-blocks": "error",
52+
"no-alert": "error"
53+
}
5654
}
5755
]
58-
}
56+
}

angular/.vscode/extensions.json

-4
This file was deleted.

angular/.vscode/launch.json

-20
This file was deleted.

angular/.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"git.ignoreLimitWarning": true
3+
}

angular/.vscode/tasks.json

-42
This file was deleted.

angular/angular.json

+12-11
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,7 @@
55
"projects": {
66
"angular-starter": {
77
"projectType": "application",
8-
"schematics": {
9-
"@schematics/angular:application": {
10-
"strict": true
11-
}
12-
},
8+
"schematics": {},
139
"root": "",
1410
"sourceRoot": "src",
1511
"prefix": "app",
@@ -20,7 +16,9 @@
2016
"outputPath": "dist/angular-starter",
2117
"index": "src/index.html",
2218
"main": "src/main.ts",
23-
"polyfills": "src/polyfills.ts",
19+
"polyfills": [
20+
"zone.js"
21+
],
2422
"tsConfig": "tsconfig.app.json",
2523
"assets": [
2624
"src/favicon.ico",
@@ -90,10 +88,11 @@
9088
"test": {
9189
"builder": "@angular-devkit/build-angular:karma",
9290
"options": {
93-
"main": "src/test.ts",
94-
"polyfills": "src/polyfills.ts",
91+
"polyfills": [
92+
"zone.js",
93+
"zone.js/testing"
94+
],
9595
"tsConfig": "tsconfig.spec.json",
96-
"karmaConfig": "karma.conf.js",
9796
"assets": [
9897
"src/favicon.ico",
9998
"src/assets"
@@ -117,6 +116,8 @@
117116
}
118117
},
119118
"cli": {
120-
"defaultCollection": "@angular-eslint/schematics"
119+
"schematicCollections": [
120+
"@angular-eslint/schematics"
121+
]
121122
}
122-
}
123+
}

angular/karma.conf.js

-44
This file was deleted.

0 commit comments

Comments
 (0)