Skip to content

Commit

Permalink
fix(package.json): loosen the engines/npm semver range to prevent fal…
Browse files Browse the repository at this point in the history
…se warnings

This should get rid the following warning when installing rxjs:


```
npm WARN engine @reactivex/rxjs@5.0.0-alpha.7: wanted: {"npm":"~2.0.0"} (current: {"node":"4.2.1","npm":"2.14.7"})
```
  • Loading branch information
IgorMinar authored and benlesh committed Nov 4, 2015
1 parent 9c7620c commit df791c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
"watch": "0.16.0"
},
"engines": {
"npm": "~2.0.0"
"npm": ">=2.0.0"
},
"typings": "./dist/cjs/Rx.d.ts"
}

0 comments on commit df791c6

Please sign in to comment.