Skip to content

Commit

Permalink
build(dashboard): switch to new @angular/fire package (angular#13051)
Browse files Browse the repository at this point in the history
Switches the dashboard to the new scoped name for the `angularfire2` package.
  • Loading branch information
devversion authored and jelbourn committed Sep 10, 2018
1 parent e1b040d commit 041a41d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions tools/dashboard/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tools/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
"@angular/common": "^7.0.0-beta.4",
"@angular/compiler": "^7.0.0-beta.4",
"@angular/core": "^7.0.0-beta.4",
"@angular/fire": "^5.0.0",
"@angular/forms": "^7.0.0-beta.4",
"@angular/material": "^7.0.0-beta.0",
"@angular/platform-browser": "^7.0.0-beta.4",
"@angular/platform-browser-dynamic": "^7.0.0-beta.4",
"@angular/router": "^7.0.0-beta.4",
"@swimlane/ngx-charts": "^9.0.0",
"angularfire2": "^5.0.0-rc.12",
"core-js": "^2.5.7",
"d3": "^5.7.0",
"firebase": "^5.4.2",
Expand Down
2 changes: 1 addition & 1 deletion tools/dashboard/src/app/dashboard-app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Component} from '@angular/core';
import {AngularFireDatabase} from 'angularfire2/database';
import {AngularFireDatabase} from '@angular/fire/database';
import {Observable} from 'rxjs';
import {CoverageResult, PayloadResult} from './data-definitions';

Expand Down
4 changes: 2 additions & 2 deletions tools/dashboard/src/app/dashboard-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import {MatCardModule, MatProgressSpinnerModule, MatToolbarModule} from '@angula
import {BrowserModule} from '@angular/platform-browser';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import {NgxChartsModule} from '@swimlane/ngx-charts';
import {AngularFireModule} from 'angularfire2';
import {AngularFireDatabaseModule} from 'angularfire2/database';
import {AngularFireModule} from '@angular/fire';
import {AngularFireDatabaseModule} from '@angular/fire/database';
import {environment} from '../environments/environment';
import {CoverageChart} from './coverage-chart/coverage-chart';
import {DashboardApp} from './dashboard-app';
Expand Down

0 comments on commit 041a41d

Please sign in to comment.