indexeddbshim / IndexedDBShim

A polyfill for IndexedDB using WebSql
Other
968 stars 191 forks source link

Bower(!) #114

Closed elmerbulthuis closed 9 years ago

elmerbulthuis commented 10 years ago

Would be great if IndexedDbShim could be loaded via bower!

jaridmargolin commented 10 years ago

It can be loaded via bower using the following:

SSH

"dependencies": {
  "IndexedDBShim": "git@github.com:axemclion/IndexedDBShim#master",
}

HTTPS

"dependencies": {
  "IndexedDBShim": "https://github.com/axemclion/IndexedDBShim.git#master",
}

Unfortunately, this will always pull the latest from master. It would be great to have better integration. As IndexedDBShim is already using semver, it should be as easy as tagging the current version and pushing to Github.

git tag 0.1.2
git push --tags
schmod commented 9 years ago

There's now a bower.json, but the versions aren't being kept up to date...

axemclion commented 9 years ago

Should we publish to bower using travis ?

JamesMessinger commented 9 years ago

You can install via Bower like this:

bower install IndexedDBShim

Please give it a try and let us know if there are any problems. Thanks!