Skip to content

Commit

Permalink
Relax Angular2 peer dependancies (#321)
Browse files Browse the repository at this point in the history
This commit changes Angular2 peer dependancies to use a caret instead of
  tilde.

  This ensures as the Angular2 team releases new minor versions
  rapidly this package will not throw an exception for UNMET PEER
  DEPENDANCY
  • Loading branch information
joepurdy authored and valorkin committed Dec 9, 2016
1 parent b58846c commit 4da74de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
"homepage": "https://github.com/valor-software/ng2-table#readme",
"dependencies": {},
"peerDependencies": {
"@angular/common": "~2.0.0",
"@angular/compiler": "~2.0.0",
"@angular/core": "~2.0.0",
"@angular/forms": "~2.0.0"
"@angular/common": "^2.0.0",
"@angular/compiler": "^2.0.0",
"@angular/core": "^2.0.0",
"@angular/forms": "^2.0.0"
},
"devDependencies": {
"@angular/common": "2.0.1",
Expand Down

0 comments on commit 4da74de

Please sign in to comment.