Skip to content

Commit

Permalink
Merge pull request #35 from rubenCodeforges/bugfix/update-libs
Browse files Browse the repository at this point in the history
due to rxjs update , had to fix imports
  • Loading branch information
rubenCodeforges authored Dec 8, 2017
2 parents 938d7cc + 666fdce commit 0fe74e8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-gapi",
"version": "0.0.44",
"version": "0.0.45",
"description": "Angular 4+ Google api module ng-gapi",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
Expand Down Expand Up @@ -36,13 +36,13 @@
"@types/gapi.auth2": "^0.0.44"
},
"devDependencies": {
"@angular/compiler": "^4.2.6",
"@angular/compiler-cli": "^4.2.6",
"@angular/core": "^4.1.1",
"@angular/platform-server": "^4.2.6",
"@angular/compiler": "^4.4.6",
"@angular/compiler-cli": "^4.4.6",
"@angular/core": "^4.4.6",
"@angular/platform-server": "^4.4.6",
"@types/node": "7.0.10",
"rxjs": "^5.3.1",
"typescript": "^2.4.1",
"zone.js": "^0.8.10"
"rxjs": "^5.5.5",
"typescript": "^2.6.2",
"zone.js": "^0.8.18"
}
}
3 changes: 2 additions & 1 deletion src/GoogleAuthService.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import {Injectable} from "@angular/core";
import {Observable} from "rxjs/Observable";

import {Observer} from "rxjs/Observer";
import 'rxjs/add/observable/of';
import 'rxjs/add/operator/mergeMap';
import {GoogleApiService} from "./GoogleApiService";
import GoogleAuth = gapi.auth2.GoogleAuth;

Expand Down

0 comments on commit 0fe74e8

Please sign in to comment.