Skip to content

Commit 2bc1d75

Browse files
committed
upgrade to Angular 8 and Node 12
1 parent 9fff98c commit 2bc1d75

Some content is hidden

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

60 files changed

+19840
-15726
lines changed

Diff for: animations/browserslist

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
2+
# For additional information regarding the format and rule options, please see:
3+
# https://github.com/browserslist/browserslist#queries
4+
5+
# You can see what browsers were selected by your queries by running:
6+
# npx browserslist
7+
8+
> 0.5%
9+
last 2 versions
10+
Firefox ESR
11+
not dead
12+
not IE 9-11 # For IE 9-11 support, remove 'not'.

Diff for: animations/e2e/app.e2e-spec.ts

-14
This file was deleted.

Diff for: animations/e2e/app.po.ts

-11
This file was deleted.

Diff for: animations/e2e/tsconfig.e2e.json

-12
This file was deleted.

Diff for: animations/package.json

+21-24
Original file line numberDiff line numberDiff line change
@@ -12,44 +12,41 @@
1212
},
1313
"private": true,
1414
"dependencies": {
15-
"au-input": "^3.0.1",
16-
"au-tab-panel": "^2.0.1",
17-
"au-mask": "^2.0.0",
18-
"au-modal": "^2.0.1",
19-
"@angular/animations": "7.0.0",
20-
"@angular/common": "7.0.0",
21-
"@angular/compiler": "7.0.0",
22-
"@angular/core": "7.0.0",
23-
"@angular/forms": "7.0.0",
24-
"@angular/http": "7.0.0",
25-
"@angular/platform-browser": "7.0.0",
26-
"@angular/platform-browser-dynamic": "7.0.0",
27-
"@angular/router": "7.0.0",
15+
"au-input": "^8.0.2",
16+
"au-tab-panel": "^8.0.2",
17+
"au-mask": "^8.0.3",
18+
"au-modal": "^8.0.2",
19+
"@angular/animations": "8.0.0",
20+
"@angular/common": "8.0.0",
21+
"@angular/compiler": "8.0.0",
22+
"@angular/core": "8.0.0",
23+
"@angular/forms": "8.0.0",
24+
"@angular/platform-browser": "8.0.0",
25+
"@angular/platform-browser-dynamic": "8.0.0",
26+
"@angular/router": "8.0.0",
2827
"core-js": "^2.4.1",
29-
"rxjs": "6.3.3",
30-
"zone.js": "0.8.26",
31-
"rxjs-compat": "^6.0.0-rc.0"
28+
"rxjs": "6.5.2",
29+
"zone.js": "~0.9.1"
3230
},
3331
"devDependencies": {
34-
"@angular/cli": "^7.0.0",
35-
"@angular/compiler-cli": "7.0.0",
36-
"@angular/language-service": "7.0.0",
32+
"@angular-devkit/build-angular": "~0.800.0",
33+
"@angular/cli": "^8.0.1",
34+
"@angular/compiler-cli": "8.0.0",
35+
"@angular/language-service": "8.0.0",
3736
"@types/jasmine": "~2.5.53",
3837
"@types/jasminewd2": "~2.0.2",
3938
"@types/node": "~6.0.60",
40-
"codelyzer": "~4.2.0",
39+
"codelyzer": "^5.0.1",
4140
"jasmine-core": "~2.6.2",
4241
"jasmine-spec-reporter": "~4.1.0",
43-
"karma": "~1.7.0",
42+
"karma": "^4.1.0",
4443
"karma-chrome-launcher": "~2.1.1",
4544
"karma-cli": "~1.0.1",
4645
"karma-coverage-istanbul-reporter": "^1.2.1",
4746
"karma-jasmine": "~1.1.0",
4847
"karma-jasmine-html-reporter": "^0.2.2",
49-
"protractor": "~5.1.2",
5048
"ts-node": "~3.2.0",
5149
"tslint": "~5.7.0",
52-
"typescript": "~3.1.3",
53-
"@angular-devkit/build-angular": "~0.10.0"
50+
"typescript": "~3.4.5"
5451
}
5552
}

Diff for: animations/src/app/app.module.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
import {BrowserModule} from '@angular/platform-browser';
22
import {NgModule} from '@angular/core';
33
import {FormsModule} from '@angular/forms';
4-
import {HttpModule} from '@angular/http';
4+
55

66
import {AppComponent} from './app.component';
77
import {AuInputModule} from "au-input";
88
import {AuTabPanelModule} from 'au-tab-panel';
99
import {AuMaskModule} from "au-mask";
1010
import {AuModalModule} from 'au-modal';
1111
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
12+
import {HttpClientModule} from "@angular/common/http";
1213

1314

1415
@NgModule({
@@ -19,7 +20,7 @@ import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
1920
BrowserModule,
2021
BrowserAnimationsModule,
2122
FormsModule,
22-
HttpModule,
23+
HttpClientModule,
2324
AuInputModule,
2425
AuTabPanelModule,
2526
AuMaskModule,

Diff for: animations/src/tsconfig.app.json

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../out-tsc/app",
5-
"module": "es2015",
65
"baseUrl": "",
76
"types": []
87
},

Diff for: animations/src/tsconfig.spec.json

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
"extends": "../tsconfig.json",
33
"compilerOptions": {
44
"outDir": "../out-tsc/spec",
5-
"module": "commonjs",
6-
"target": "es5",
75
"baseUrl": "",
86
"types": [
97
"jasmine",

Diff for: animations/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
22
"compileOnSave": false,
33
"compilerOptions": {
4+
"module": "esnext",
45
"outDir": "./dist/out-tsc",
56
"baseUrl": "src",
67
"sourceMap": true,
78
"declaration": false,
89
"moduleResolution": "node",
910
"emitDecoratorMetadata": true,
1011
"experimentalDecorators": true,
11-
"target": "es5",
12+
"target": "es2015",
1213
"typeRoots": [
1314
"node_modules/@types"
1415
],

Diff for: animations/tslint.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,12 @@
113113
"app",
114114
"kebab-case"
115115
],
116-
"use-input-property-decorator": true,
117-
"use-output-property-decorator": true,
118-
"use-host-property-decorator": true,
116+
"no-inputs-metadata-property": true,
117+
"no-outputs-metadata-property": true,
118+
"no-host-metadata-property": true,
119119
"no-input-rename": true,
120120
"no-output-rename": true,
121-
"use-life-cycle-interface": true,
121+
"use-lifecycle-interface": true,
122122
"use-pipe-transform-interface": true,
123123
"component-class-suffix": true,
124124
"directive-class-suffix": true,

0 commit comments

Comments
 (0)