Skip to content

Commit 1ae655f

Browse files
authored
Merge pull request #12 from stevermeister/master
Update to Angular11
2 parents 05bf3f3 + ffbacd6 commit 1ae655f

37 files changed

+12434
-5820
lines changed

angular-cli.json

Lines changed: 0 additions & 67 deletions
This file was deleted.

angular.json

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"angular-change-detection-demos": {
7+
"projectType": "application",
8+
"schematics": {
9+
"@schematics/angular:component": {
10+
"inlineTemplate": true,
11+
"inlineStyle": true,
12+
"skipTests": true
13+
},
14+
"@schematics/angular:class": {
15+
"skipTests": true
16+
},
17+
"@schematics/angular:directive": {
18+
"skipTests": true
19+
},
20+
"@schematics/angular:guard": {
21+
"skipTests": true
22+
},
23+
"@schematics/angular:interceptor": {
24+
"skipTests": true
25+
},
26+
"@schematics/angular:module": {
27+
"skipTests": true
28+
},
29+
"@schematics/angular:pipe": {
30+
"skipTests": true
31+
},
32+
"@schematics/angular:service": {
33+
"skipTests": true
34+
}
35+
},
36+
"root": "",
37+
"sourceRoot": "src",
38+
"prefix": "app",
39+
"architect": {
40+
"build": {
41+
"builder": "@angular-devkit/build-angular:browser",
42+
"options": {
43+
"outputPath": "dist/angular-change-detection-demos",
44+
"index": "src/index.html",
45+
"main": "src/main.ts",
46+
"polyfills": "src/polyfills.ts",
47+
"tsConfig": "tsconfig.app.json",
48+
"aot": true,
49+
"assets": [
50+
"src/favicon.ico",
51+
"src/assets"
52+
],
53+
"styles": [
54+
"src/styles.css"
55+
],
56+
"scripts": []
57+
},
58+
"configurations": {
59+
"production": {
60+
"fileReplacements": [
61+
{
62+
"replace": "src/environments/environment.ts",
63+
"with": "src/environments/environment.prod.ts"
64+
}
65+
],
66+
"optimization": true,
67+
"outputHashing": "all",
68+
"sourceMap": false,
69+
"extractCss": true,
70+
"namedChunks": false,
71+
"extractLicenses": true,
72+
"vendorChunk": false,
73+
"buildOptimizer": true,
74+
"budgets": [
75+
{
76+
"type": "initial",
77+
"maximumWarning": "2mb",
78+
"maximumError": "5mb"
79+
},
80+
{
81+
"type": "anyComponentStyle",
82+
"maximumWarning": "6kb",
83+
"maximumError": "10kb"
84+
}
85+
]
86+
}
87+
}
88+
},
89+
"serve": {
90+
"builder": "@angular-devkit/build-angular:dev-server",
91+
"options": {
92+
"browserTarget": "angular-change-detection-demos:build"
93+
},
94+
"configurations": {
95+
"production": {
96+
"browserTarget": "angular-change-detection-demos:build:production"
97+
}
98+
}
99+
},
100+
"extract-i18n": {
101+
"builder": "@angular-devkit/build-angular:extract-i18n",
102+
"options": {
103+
"browserTarget": "angular-change-detection-demos:build"
104+
}
105+
}
106+
}
107+
}
108+
},
109+
"defaultProject": "angular-change-detection-demos",
110+
"cli": {
111+
"analytics": false
112+
}
113+
}

e2e/app.e2e-spec.ts

Lines changed: 0 additions & 14 deletions
This file was deleted.

e2e/app.po.ts

Lines changed: 0 additions & 11 deletions
This file was deleted.

e2e/tsconfig.json

Lines changed: 0 additions & 16 deletions
This file was deleted.

karma.conf.js

Lines changed: 0 additions & 43 deletions
This file was deleted.

0 commit comments

Comments
 (0)