Skip to content

Commit 041a41d

Browse files
devversionjelbourn
authored andcommitted
build(dashboard): switch to new @angular/fire package (#13051)
Switches the dashboard to the new scoped name for the `angularfire2` package.
1 parent e1b040d commit 041a41d

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

tools/dashboard/package-lock.json

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

tools/dashboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
"@angular/common": "^7.0.0-beta.4",
1616
"@angular/compiler": "^7.0.0-beta.4",
1717
"@angular/core": "^7.0.0-beta.4",
18+
"@angular/fire": "^5.0.0",
1819
"@angular/forms": "^7.0.0-beta.4",
1920
"@angular/material": "^7.0.0-beta.0",
2021
"@angular/platform-browser": "^7.0.0-beta.4",
2122
"@angular/platform-browser-dynamic": "^7.0.0-beta.4",
2223
"@angular/router": "^7.0.0-beta.4",
2324
"@swimlane/ngx-charts": "^9.0.0",
24-
"angularfire2": "^5.0.0-rc.12",
2525
"core-js": "^2.5.7",
2626
"d3": "^5.7.0",
2727
"firebase": "^5.4.2",

tools/dashboard/src/app/dashboard-app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {Component} from '@angular/core';
2-
import {AngularFireDatabase} from 'angularfire2/database';
2+
import {AngularFireDatabase} from '@angular/fire/database';
33
import {Observable} from 'rxjs';
44
import {CoverageResult, PayloadResult} from './data-definitions';
55

tools/dashboard/src/app/dashboard-module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import {MatCardModule, MatProgressSpinnerModule, MatToolbarModule} from '@angula
33
import {BrowserModule} from '@angular/platform-browser';
44
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
55
import {NgxChartsModule} from '@swimlane/ngx-charts';
6-
import {AngularFireModule} from 'angularfire2';
7-
import {AngularFireDatabaseModule} from 'angularfire2/database';
6+
import {AngularFireModule} from '@angular/fire';
7+
import {AngularFireDatabaseModule} from '@angular/fire/database';
88
import {environment} from '../environments/environment';
99
import {CoverageChart} from './coverage-chart/coverage-chart';
1010
import {DashboardApp} from './dashboard-app';

0 commit comments

Comments
 (0)