Skip to content
This repository was archived by the owner on Feb 16, 2025. It is now read-only.

Commit 61c734d

Browse files
committed
⬆️ Upgrade dependencies
See angular/angular-cli#13095
1 parent e92e399 commit 61c734d

8 files changed

+580
-490
lines changed
File renamed without changes.

package-lock.json

+535-453
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+26-26
Original file line numberDiff line numberDiff line change
@@ -14,44 +14,44 @@
1414
},
1515
"private": true,
1616
"dependencies": {
17-
"@angular/animations": "^7.2.15",
18-
"@angular/cdk": "~7.3.7",
19-
"@angular/common": "^7.2.15",
20-
"@angular/compiler": "^7.2.15",
21-
"@angular/core": "^7.2.15",
22-
"@angular/forms": "^7.2.15",
23-
"@angular/material": "^7.3.7",
24-
"@angular/platform-browser": "^7.2.15",
25-
"@angular/platform-browser-dynamic": "^7.2.15",
26-
"@angular/router": "^7.2.15",
27-
"core-js": "^2.6.9",
17+
"@angular/animations": "^8.0.1",
18+
"@angular/cdk": "~8.0.1",
19+
"@angular/common": "^8.0.1",
20+
"@angular/compiler": "^8.0.1",
21+
"@angular/core": "^8.0.1",
22+
"@angular/forms": "^8.0.1",
23+
"@angular/material": "^8.0.1",
24+
"@angular/platform-browser": "^8.0.1",
25+
"@angular/platform-browser-dynamic": "^8.0.1",
26+
"@angular/router": "^8.0.1",
27+
"core-js": "^3.1.3",
2828
"hammerjs": "^2.0.8",
29-
"rxjs": "~6.5.0",
29+
"rxjs": "~6.5.2",
3030
"spu": "^1.3.2",
31-
"tslib": "^1.9.0",
32-
"zone.js": "~0.8.26"
31+
"tslib": "^1.10.0",
32+
"zone.js": "~0.9.1"
3333
},
3434
"devDependencies": {
35-
"@angular-devkit/build-angular": "^0.800.0",
36-
"@angular/cli": "^7.3.9",
37-
"@angular/compiler-cli": "^7.2.15",
38-
"@angular/language-service": "^7.2.15",
39-
"@types/jasmine": "~2.8.8",
35+
"@angular-devkit/build-angular": "~0.800.0",
36+
"@angular/cli": "^8.0.3",
37+
"@angular/compiler-cli": "^8.0.1",
38+
"@angular/language-service": "^8.0.1",
39+
"@types/jasmine": "~3.3.13",
4040
"@types/jasminewd2": "~2.0.3",
41-
"@types/node": "~8.10.0",
41+
"@types/node": "~12.0.8",
4242
"angular-cli-ghpages": "^0.5.3",
43-
"codelyzer": "~4.5.0",
43+
"codelyzer": "^5.0.1",
4444
"gitmoji-cli": "^1.9.2",
45-
"jasmine-core": "~2.99.1",
45+
"jasmine-core": "~3.4.0",
4646
"jasmine-spec-reporter": "~4.2.1",
4747
"karma": "~4.1.0",
4848
"karma-chrome-launcher": "~2.2.0",
4949
"karma-coverage-istanbul-reporter": "~2.0.1",
50-
"karma-jasmine": "~1.1.2",
51-
"karma-jasmine-html-reporter": "^0.2.2",
50+
"karma-jasmine": "~2.0.1",
51+
"karma-jasmine-html-reporter": "^1.4.2",
5252
"protractor": "~5.4.0",
53-
"ts-node": "~7.0.0",
53+
"ts-node": "~8.3.0",
5454
"tslint": "~5.17.0",
55-
"typescript": "~3.2.2"
55+
"typescript": "^3.4.5"
5656
}
5757
}

src/app/app.component.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Component, Inject, OnInit } from '@angular/core'
2-
import { MatSnackBar, MAT_SNACK_BAR_DATA, MatDialog } from '@angular/material'
2+
import { MatDialog } from '@angular/material/dialog';
3+
import { MatSnackBar, MAT_SNACK_BAR_DATA } from '@angular/material/snack-bar';
34
import * as spu from 'spu'
45
import { AboutDialogComponent } from './about-dialog/about-dialog.component'
56

src/app/app.module.ts

+10-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@ import { FormsModule } from '@angular/forms'
44

55
import { AppComponent, LogsSnackBarComponent } from './app.component'
66
import { BrowserAnimationsModule } from '@angular/platform-browser/animations'
7-
import {
8-
MatButtonModule, MatButtonToggleModule, MatCardModule, MatDialogModule, MatIconModule, MatInputModule,
9-
MatMenuModule, MatSnackBarModule, MatToolbarModule, MatFormFieldModule
10-
} from '@angular/material'
7+
import { MatButtonModule } from '@angular/material/button';
8+
import { MatButtonToggleModule } from '@angular/material/button-toggle';
9+
import { MatCardModule } from '@angular/material/card';
10+
import { MatDialogModule } from '@angular/material/dialog';
11+
import { MatFormFieldModule } from '@angular/material/form-field';
12+
import { MatIconModule } from '@angular/material/icon';
13+
import { MatInputModule } from '@angular/material/input';
14+
import { MatMenuModule } from '@angular/material/menu';
15+
import { MatSnackBarModule } from '@angular/material/snack-bar';
16+
import { MatToolbarModule } from '@angular/material/toolbar';
1117
import { AboutDialogComponent } from './about-dialog/about-dialog.component'
1218

1319
@NgModule({

src/polyfills.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*
4444
* (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
4545
* (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
46-
* (window as any).__zone_symbol__BLACK_LISTED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
46+
* (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
4747
*
4848
* in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
4949
* with the following flag, it will bypass `zone.js` patch for IE/Edge

tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
"compileOnSave": false,
33
"compilerOptions": {
44
"baseUrl": "./",
5+
"downlevelIteration": true,
56
"outDir": "./dist/out-tsc",
67
"sourceMap": true,
78
"declaration": false,
8-
"module": "es2015",
9+
"module": "esnext",
910
"moduleResolution": "node",
1011
"emitDecoratorMetadata": true,
1112
"experimentalDecorators": true,

tslint.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@
6868
],
6969
"trailing-comma": false,
7070
"no-output-on-prefix": true,
71-
"use-input-property-decorator": true,
72-
"use-output-property-decorator": true,
73-
"use-host-property-decorator": true,
71+
"no-inputs-metadata-property": true,
72+
"no-outputs-metadata-property": true,
73+
"no-host-metadata-property": true,
7474
"no-input-rename": true,
7575
"no-output-rename": true,
76-
"use-life-cycle-interface": true,
76+
"use-lifecycle-interface": true,
7777
"use-pipe-transform-interface": true,
7878
"component-class-suffix": true,
7979
"directive-class-suffix": true,

0 commit comments

Comments
 (0)