brianloveswords / streamsql

A streaming, backend agnostic SQL ORM heavily inspired by levelup
MIT License
67 stars 7 forks source link

bluebird Dependency #15

Closed kayaelle closed 10 years ago

kayaelle commented 10 years ago

Heya- when installing streamsql, I get this error:

No compatible version found: bluebird@'^1.0.8' Looks like bluebird is at 1.2.0.

Thanks

brianloveswords commented 10 years ago

It works for me, what version of node and npm are you using? I think it could be the ^ causing it (http://fredkschott.com/post/2014/02/npm-no-longer-defaults-to-tildes/)

I can also change it in package.json, since after 1.0.0 my understanding is that tildes and carets are semantically equivalent.

brianloveswords commented 10 years ago

Okay, I changed it in package.json to ~1.2.0 so it should be compatible with older versions of npm.

brianloveswords commented 10 years ago

Published 0.6.0

kayaelle commented 10 years ago

Yeah - it probably was my npm version.

node: 0.10.15 npm: 1.3.5

updated to 1.4.6 and installed fine without your update to package.

Thanks!