Skip to content

Commit

Permalink
Updated to work with angular 2.0.2
Browse files Browse the repository at this point in the history
I'm unable to pull ng2-idle into my angular webpack application.  I get the following error:

Error: No provider for KeepaliveSvc!

Based on a previous issue - grbsk#3 - I suspect that this is because I'm using angular 2.0.2 but ng2-idle was built against a specific angular patch release (2.0.0).  This change makes ng2-idle a little more friendly by allowing 2.0.x.
  • Loading branch information
mvarblow authored Oct 12, 2016
1 parent ee0e9ec commit 56cc3db
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
},
"homepage": "https://github.com/HackedByChinese/ng2-idle.git#readme",
"devDependencies": {
"@angular/compiler": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"@angular/compiler": "~2.0.0",
"@angular/platform-browser": "~2.0.0",
"@angular/platform-browser-dynamic": "~2.0.0",
"cz-conventional-changelog": "^1.1.6",
"del": "^2.2.0",
"es6-module-loader": "^0.17.8",
Expand Down Expand Up @@ -69,8 +69,8 @@
"typings": "^0.6.6"
},
"dependencies": {
"@angular/common": "2.0.0",
"@angular/core": "2.0.0",
"@angular/common": "~2.0.0",
"@angular/core": "~2.0.0",
"rxjs": "5.0.0-beta.12",
"zone.js": "0.6.21"
},
Expand Down

0 comments on commit 56cc3db

Please sign in to comment.