Skip to content

Commit

Permalink
fix(package.json): npm shrinkwarp with angular 5
Browse files Browse the repository at this point in the history
Adapt peerDependencies to make it possible to build npm shrinkwrap.json with angular 5 
( errors with current version )
  • Loading branch information
harterSe authored and christopherthielen committed Nov 22, 2017
1 parent b75aa64 commit 477d0f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
"tslib": "^1.7.1"
},
"peerDependencies": {
"@angular/common": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/router": "^4.0.0"
"@angular/common": "^4.0.0 || ^5.0.0",
"@angular/core": "^4.0.0 || ^5.0.0",
"@angular/router": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@angular/common": "^4.0.0",
Expand Down

0 comments on commit 477d0f7

Please sign in to comment.