kefirjs / kefir

A Reactive Programming library for JavaScript
https://kefirjs.github.io/kefir/
MIT License
1.87k stars 97 forks source link

Bower not aware of kefirjs/kefir, still points to rpominov/kefir #263

Closed wbercx closed 6 years ago

wbercx commented 6 years ago

Hi,

It appears you have moved Kefir to kefirjs/kefir, but Bower is still pointing to rpominov/kefir, causing builds to fail as it has no releases.

I am aware Bower itself has been deprecated, but we have not gotten around to migrating to Yarn just yet.

If it helps anyone else: we've worked around it by specifically pointing to a release in this repo in our bower.json file.

"dependencies": {
    "kefir": "https://github.com/kefirjs/kefir.git#3.8.0"
}

This may catch some other people off-guard though.

rpominov commented 6 years ago

I've unregistered and registered it again pointing to the new repo. Should be fixed now.

mAAdhaTTah commented 6 years ago

@wbercx Does this resolve the issue for you?

wbercx commented 6 years ago

Works fine now. Thanks for that!