Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Commit 605d4f3

Browse files
amcdnljelbourn
authored andcommitted
Update dependencies for ts, rx, moment, and material/cdk (#309)
1 parent e6c0273 commit 605d4f3

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"angular-cli": {},
66
"scripts": {
77
"start": "npm run build-themes && ng serve --aot --sourcemaps=false",
8+
"start-jit": "npm run build-themes && ng serve --sourcemaps=false",
89
"lint": "tslint \"src/**/*.ts\"",
910
"test": "ng test",
1011
"pree2e": "webdriver-manager update",
@@ -19,19 +20,21 @@
1920
"private": true,
2021
"dependencies": {
2122
"@angular/animations": "^4.4.4",
22-
"@angular/cdk": "2.0.0-beta.12",
23+
"@angular/cdk": "github:angular/cdk-builds",
2324
"@angular/common": "^4.4.4",
2425
"@angular/compiler": "^4.4.4",
2526
"@angular/core": "^4.4.4",
2627
"@angular/forms": "^4.4.4",
2728
"@angular/http": "^4.4.4",
28-
"@angular/material": "2.0.0-beta.12",
29+
"@angular/material": "github:angular/material2-builds",
30+
"@angular/material-moment-adapter": "github:angular/material2-moment-adapter-builds",
2931
"@angular/platform-browser": "^4.4.4",
3032
"@angular/platform-browser-dynamic": "^4.4.4",
3133
"@angular/router": "^4.4.4",
3234
"@angular/service-worker": "^1.0.0-beta.16",
3335
"core-js": "^2.4.1",
34-
"rxjs": "^5.1.0",
36+
"moment": "^2.19.1",
37+
"rxjs": "^5.5.0",
3538
"zone.js": "^0.8.4"
3639
},
3740
"devDependencies": {
@@ -53,6 +56,6 @@
5356
"protractor": "^5.1.1",
5457
"ts-node": "^2.0.0",
5558
"tslint": "^4.4.2",
56-
"typescript": "~2.2.0"
59+
"typescript": "~2.4.0"
5760
}
5861
}

src/app/app-module.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {LocationStrategy, PathLocationStrategy} from '@angular/common';
55
import {FormsModule} from '@angular/forms';
66
import {HttpModule} from '@angular/http';
77
import {RouterModule} from '@angular/router';
8-
import {MatNativeDateModule, MATERIAL_COMPATIBILITY_MODE} from '@angular/material';
8+
import {MatNativeDateModule} from '@angular/material';
99
import {ExampleModule} from '@angular/material-examples';
1010

1111
import {MaterialDocsApp} from './material-docs-app';
@@ -67,7 +67,6 @@ import {
6767
ThemeStorage,
6868
CanActivateComponentSidenav,
6969
{provide: LocationStrategy, useClass: PathLocationStrategy},
70-
{provide: MATERIAL_COMPATIBILITY_MODE, useValue: true},
7170
],
7271
bootstrap: [MaterialDocsApp],
7372
})

0 commit comments

Comments
 (0)