Skip to content

Commit b3f5e42

Browse files
chore: update to angular 9.1.4
1 parent abb3e43 commit b3f5e42

File tree

4 files changed

+1702
-692
lines changed

4 files changed

+1702
-692
lines changed

angular.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"build": {
1212
"builder": "@angular-devkit/build-angular:browser",
1313
"options": {
14+
"aot": true,
1415
"outputPath": "dist",
1516
"index": "src/index.html",
1617
"main": "src/main.ts",
@@ -28,6 +29,12 @@
2829
},
2930
"configurations": {
3031
"production": {
32+
"budgets": [
33+
{
34+
"type": "anyComponentStyle",
35+
"maximumWarning": "6kb"
36+
}
37+
],
3138
"optimization": true,
3239
"outputHashing": "all",
3340
"sourceMap": false,
@@ -125,10 +132,13 @@
125132
"schematics": {
126133
"@schematics/angular:component": {
127134
"prefix": "app",
128-
"styleext": "css"
135+
"style": "css"
129136
},
130137
"@schematics/angular:directive": {
131138
"prefix": "app"
132139
}
140+
},
141+
"cli": {
142+
"analytics": false
133143
}
134144
}

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
},
1414
"license": "MIT",
1515
"dependencies": {
16-
"@angular/animations": "^8.2.14",
17-
"@angular/common": "^8.2.14",
18-
"@angular/compiler": "^8.2.14",
19-
"@angular/core": "^8.2.14",
20-
"@angular/forms": "^8.2.14",
21-
"@angular/platform-browser": "^8.2.14",
22-
"@angular/platform-browser-dynamic": "^8.2.14",
23-
"@angular/router": "^8.2.14",
24-
"@angular/upgrade": "^8.2.14",
16+
"@angular/animations": "9.1.4",
17+
"@angular/common": "9.1.4",
18+
"@angular/compiler": "9.1.4",
19+
"@angular/core": "9.1.4",
20+
"@angular/forms": "9.1.4",
21+
"@angular/platform-browser": "9.1.4",
22+
"@angular/platform-browser-dynamic": "9.1.4",
23+
"@angular/router": "9.1.4",
24+
"@angular/upgrade": "9.1.4",
2525
"@uirouter/angular": "6.0.1",
2626
"@uirouter/angular-hybrid": "^10.0.1",
2727
"@uirouter/angularjs": "1.0.26",
@@ -33,18 +33,18 @@
3333
"rxjs": "^6.5.5",
3434
"rxjs-compat": "^6.0.0-rc.0",
3535
"tslib": "^1.10.0",
36-
"zone.js": "~0.9.1"
36+
"zone.js": "~0.10.2"
3737
},
3838
"devDependencies": {
39-
"@angular-devkit/build-angular": "~0.803.25",
40-
"@angular/cli": "8.3.26",
41-
"@angular/compiler-cli": "^8.2.14",
42-
"@angular/language-service": "^8.2.14",
39+
"@angular-devkit/build-angular": "~0.901.4",
40+
"@angular/cli": "9.1.4",
41+
"@angular/compiler-cli": "9.1.4",
42+
"@angular/language-service": "9.1.4",
4343
"@types/angular": "^1.7.0",
4444
"@types/jasmine": "~2.8.3",
4545
"@types/jasminewd2": "~2.0.2",
46-
"@types/node": "~6.0.60",
47-
"codelyzer": "^5.0.1",
46+
"@types/node": "^12.11.1",
47+
"codelyzer": "^5.1.2",
4848
"cypress": "4.5.0",
4949
"jasmine-core": "~2.8.0",
5050
"jasmine-spec-reporter": "~4.2.1",
@@ -58,7 +58,7 @@
5858
"shx": "0.2.2",
5959
"ts-node": "~4.1.0",
6060
"tslint": "~5.9.1",
61-
"typescript": "~3.5.3",
61+
"typescript": "~3.8.3",
6262
"wait-on": "2.1.0"
6363
}
6464
}

src/tsconfig.app.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@
55
"baseUrl": "./",
66
"types": []
77
},
8-
"exclude": [
9-
"test.ts",
10-
"**/*.spec.ts"
8+
"files": [
9+
"main.ts",
10+
"polyfills.ts"
11+
],
12+
"include": [
13+
"src/**/*.d.ts"
1114
]
1215
}

0 commit comments

Comments
 (0)