denvned / isomorphic-relay

Adds server side rendering support to React Relay
BSD 2-Clause "Simplified" License
242 stars 53 forks source link

relaxed semver for devdeps so peerdep restrictions dont fail npm install #46

Closed antialias closed 8 years ago

antialias commented 8 years ago

I get the following error if I run npm install inside this package without this change:

npm ERR! peerinvalid The package babel-relay-plugin@0.8.0 does not satisfy its siblings' peerDependencies requirements!
npm ERR! peerinvalid Peer react-relay@0.9.0 wants babel-relay-plugin@0.9.0
antialias commented 8 years ago

@denvned

denvned commented 8 years ago

isomorphic-relay depends on some Relay non-public APIs that might significantly change even in a patch version of Relay, that's why it always references exact versions.

I've just updated the Relay version to v0.9.2 in the package.json. Excuse me for delay.

antialias commented 8 years ago

That works for me. thanks!