We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi guys
I cannot figure out why this happens then again I'm fairly new to ember. Is this an 'issue' or am I doing something wrong? Any help appreciated!
When I install via the ember CLI I get the addon with an old version of bootstrap-slider:
ember install ui-ember-slider Installed packages for tooling via npm. installing ui-ember-slider install bower package seiyria-bootstrap-slider cached https://github.com/seiyria/bootstrap-slider.git#6.0.17 Installed browser packages via Bower. Installed addon package.
On the other hand when I install the npm package directly I get the newest version of bootstrap-slider:
bower install ui-slider bower ui-slider#* not-cached https://github.com/lifegadget/ui-slider.git#* bower ui-slider#* resolve https://github.com/lifegadget/ui-slider.git#* bower ui-slider#* download https://github.com/lifegadget/ui-slider/archive/0.5.0.tar.gz bower ui-slider#* extract archive.tar.gz bower ui-slider#* resolved https://github.com/lifegadget/ui-slider.git#0.5.0 bower showdown#^1.4.3 not-cached https://github.com/showdownjs/showdown.git#^1.4.3 bower showdown#^1.4.3 resolve https://github.com/showdownjs/showdown.git#^1.4.3 bower seiyria-bootstrap-slider#^9.7.2 not-cached https://github.com/seiyria/bootstrap-slider.git#^9.7.2 bower seiyria-bootstrap-slider#^9.7.2 resolve https://github.com/seiyria/bootstrap-slider.git#^9.7.2 bower showdown#^1.4.3 download https://github.com/showdownjs/showdown/archive/1.6.4.tar.gz bower seiyria-bootstrap-slider#^9.7.2 download https://github.com/seiyria/bootstrap-slider/archive/v9.8.0.tar.gz bower showdown#^1.4.3 extract archive.tar.gz bower seiyria-bootstrap-slider#^9.7.2 extract archive.tar.gz bower showdown#^1.4.3 resolved https://github.com/showdownjs/showdown.git#1.6.4 bower seiyria-bootstrap-slider#^9.7.2 resolved https://github.com/seiyria/bootstrap-slider.git#9.8.0 bower ui-slider#^0.5.0 install ui-slider#0.5.0 bower showdown#^1.4.3 install showdown#1.6.4 bower seiyria-bootstrap-slider#^9.7.2 install seiyria-bootstrap-slider#9.8.0 ui-slider#0.5.0 bower_components/ui-slider ├── seiyria-bootstrap-slider#9.8.0 └── showdown#1.6.4 showdown#1.6.4 bower_components/showdown seiyria-bootstrap-slider#9.8.0 bower_components/seiyria-bootstrap-slider
bower install ui-slider bower ui-slider#* not-cached https://github.com/lifegadget/ui-slider.git#* bower ui-slider#* resolve https://github.com/lifegadget/ui-slider.git#* bower ui-slider#* download https://github.com/lifegadget/ui-slider/archive/0.5.0.tar.gz bower ui-slider#* extract archive.tar.gz bower ui-slider#* resolved https://github.com/lifegadget/ui-slider.git#0.5.0 bower showdown#^1.4.3 not-cached https://github.com/showdownjs/showdown.git#^1.4.3 bower showdown#^1.4.3 resolve https://github.com/showdownjs/showdown.git#^1.4.3 bower seiyria-bootstrap-slider#^9.7.2 not-cached https://github.com/seiyria/bootstrap-slider.git#^9.7.2 bower seiyria-bootstrap-slider#^9.7.2 resolve https://github.com/seiyria/bootstrap-slider.git#^9.7.2 bower showdown#^1.4.3 download https://github.com/showdownjs/showdown/archive/1.6.4.tar.gz bower seiyria-bootstrap-slider#^9.7.2 download https://github.com/seiyria/bootstrap-slider/archive/v9.8.0.tar.gz bower showdown#^1.4.3 extract archive.tar.gz bower seiyria-bootstrap-slider#^9.7.2 extract archive.tar.gz bower showdown#^1.4.3 resolved https://github.com/showdownjs/showdown.git#1.6.4 bower seiyria-bootstrap-slider#^9.7.2 resolved https://github.com/seiyria/bootstrap-slider.git#9.8.0 bower ui-slider#^0.5.0 install ui-slider#0.5.0 bower showdown#^1.4.3 install showdown#1.6.4 bower seiyria-bootstrap-slider#^9.7.2 install seiyria-bootstrap-slider#9.8.0
ui-slider#0.5.0 bower_components/ui-slider ├── seiyria-bootstrap-slider#9.8.0 └── showdown#1.6.4
showdown#1.6.4 bower_components/showdown
seiyria-bootstrap-slider#9.8.0 bower_components/seiyria-bootstrap-slider
The text was updated successfully, but these errors were encountered:
I found why this happens: In the blueprint index.js it installs an old version of the bower package:
afterInstall: function() { return this.addBowerPackagesToProject([ { name: 'seiyria-bootstrap-slider', target: '~6.0.6' } ]); }
Is this intentionally? It does not make any sense since the bower.json states:
"dependencies": { "seiyria-bootstrap-slider": "^9.7.2", "showdown": "^1.4.3" },
...which is more like what I am looking for :) !
Sorry, something went wrong.
No branches or pull requests
Hi guys
I cannot figure out why this happens then again I'm fairly new to ember. Is this an 'issue' or am I doing something wrong? Any help appreciated!
When I install via the ember CLI I get the addon with an old version of bootstrap-slider:
On the other hand when I install the npm package directly I get the newest version of bootstrap-slider:
The text was updated successfully, but these errors were encountered: