Skip to content

Commit 162bf4e

Browse files
committed
Upgrade to Angular 7 beta 4
1 parent a85aa60 commit 162bf4e

File tree

15 files changed

+2645
-5904
lines changed

15 files changed

+2645
-5904
lines changed

package-lock.json

Lines changed: 2603 additions & 5862 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -32,31 +32,31 @@
3232
"compodoc:w": "compodoc -p src/tsconfig.app.json --serve --watch"
3333
},
3434
"dependencies": {
35-
"@angular/animations": "^6.0.0",
36-
"@angular/cdk": "^6.0.1",
37-
"@angular/common": "^6.0.0",
38-
"@angular/compiler": "^6.0.0",
39-
"@angular/core": "^6.0.0",
40-
"@angular/forms": "^6.0.0",
41-
"@angular/http": "^6.0.0",
42-
"@angular/material": "^6.0.1",
43-
"@angular/platform-browser": "^6.0.0",
44-
"@angular/platform-browser-dynamic": "^6.0.0",
45-
"@angular/platform-server": "^6.0.0",
46-
"@angular/router": "^6.0.0",
47-
"core-js": "^2.5.3",
48-
"firebase": "^5.0.2",
35+
"@angular/animations": "^7.0.0-beta.7",
36+
"@angular/cdk": "^7.0.0-beta.2",
37+
"@angular/common": "^7.0.0-beta.7",
38+
"@angular/compiler": "^7.0.0-beta.7",
39+
"@angular/core": "^7.0.0-beta.7",
40+
"@angular/forms": "^7.0.0-beta.7",
41+
"@angular/http": "^7.0.0-beta.7",
42+
"@angular/material": "^7.0.0-beta.2",
43+
"@angular/platform-browser": "^7.0.0-beta.7",
44+
"@angular/platform-browser-dynamic": "^7.0.0-beta.7",
45+
"@angular/platform-server": "^7.0.0-beta.7",
46+
"@angular/router": "^7.0.0-beta.7",
47+
"core-js": "^2.5.7",
48+
"firebase": "^5.5.1",
4949
"hammerjs": "^2.0.8",
50-
"rxjs": "^6.1.0",
51-
"rxjs-compat": "^6.1.0",
50+
"rxjs": "^6.3.3",
51+
"rxjs-compat": "^6.3.3",
5252
"ts-helpers": "*",
5353
"zone.js": "^0.8.26"
5454
},
5555
"devDependencies": {
56-
"@angular-devkit/build-angular": "~0.6.0",
57-
"@angular/cli": "^6.0.0",
58-
"@angular/compiler-cli": "^6.0.0",
59-
"@angular/language-service": "^6.0.0",
56+
"@angular-devkit/build-angular": "^0.9.0-beta.4",
57+
"@angular/cli": "^7.0.0-beta.4",
58+
"@angular/compiler-cli": "^7.0.0-beta.7",
59+
"@angular/language-service": "^7.0.0-beta.7",
6060
"@compodoc/compodoc": "^1.1.2",
6161
"@types/jasmine": "^2.8.7",
6262
"@types/node": "^10.0.3",
@@ -73,7 +73,7 @@
7373
"rxjs-tslint": "^0.1.3",
7474
"ts-node": "^6.0.2",
7575
"tslint": "^5.10.0",
76-
"typescript": "2.7.2",
77-
"webpack": "^4.6.0"
76+
"typescript": "^3.0.3",
77+
"webpack": "^4.20.2"
7878
}
7979
}

src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Component, OnInit } from '@angular/core';
2-
import * as firebase from 'firebase';
2+
import * as firebase from 'firebase/app';
33

44
@Component({
55
selector: 'app-root',

src/app/components/auth/phone-signin/phone-signin.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Component, OnInit } from '@angular/core';
22
import { Router } from '@angular/router';
3-
import * as firebase from 'firebase';
3+
import * as firebase from 'firebase/app';
44

55
import { WindowService, PhoneNumber, AuthService, AlertService } from '../../shared';
66

src/app/components/blocks/third-block/third-block.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ export class ThirdBlockComponent {
1212
titleFour = 'Material 2';
1313
contentFour = 'Material Design is a unified system that combines theory, resources, and tools for crafting digital experiences.';
1414

15-
titleFive = 'Firebase';
15+
titleFive = 'firebase/app';
1616
contentFive = 'Firebase is built on Google infrastructure and scales automatically, for even the largest apps.';
1717
}

src/app/components/email-me/email-me.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<mat-card>
33
<h3>Keep in touch!</h3>
44
<mat-form-field class="full-width">
5-
<input matInput formControlName="email" placeholder="Your Email" type="email" ngModel required>
5+
<input matInput formControlName="email" placeholder="Your Email" type="email" required>
66
</mat-form-field>
77
<div *ngIf="!form.controls.email.valid && form.controls.email.dirty">
88
<p>Please enter a valid email.</p>

src/app/components/messages/message.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as firebase from 'firebase';
1+
import * as firebase from 'firebase/app';
22
import { Injectable } from '@angular/core';
33
import { Observable } from 'rxjs/observable';
44
import { Subject } from 'rxjs/Subject';

src/app/components/messages/messages.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as firebase from 'firebase';
1+
import * as firebase from 'firebase/app';
22
import { Component, OnInit, AfterViewChecked, ElementRef, ViewChild } from '@angular/core';
33
import { Observable } from 'rxjs/observable';
44
import { FormsModule } from '@angular/forms';

src/app/components/profile/profile-settings.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core';
22
import { Router } from '@angular/router';
33
import { NgForm, FormsModule, FormBuilder, FormGroup, ReactiveFormsModule } from '@angular/forms';
44

5-
import * as firebase from 'firebase';
5+
import * as firebase from 'firebase/app';
66

77
import { Profile, AuthService, AlertService, UserService } from '../shared';
88

src/app/components/profile/profile.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core';
22
import { ActivatedRoute, Params } from '@angular/router';
33
import { trigger, state, style, transition, animate, keyframes } from '@angular/animations';
44

5-
import * as firebase from 'firebase';
5+
import * as firebase from 'firebase/app';
66

77
import { User, Profile, UserService, AlertService } from '../shared';
88

0 commit comments

Comments
 (0)