-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
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
wiredep not working with bootstrap 3.3.5 #210
Comments
@joaocc - This is technically not wiredep's fault, this is a tool getting shafted by another. Bower deciding to change the spec for "main" and made a gigantic mess of things with bower/spec#43 . You will have the same problem with font-awesome ~4.4.0 Workaround ( In your bower.json ) "overrides": {
"bootstrap": {
"main":[
"dist/css/bootstrap.css"
]
},
"font-awesome": {
"main":[
"css/font-awesome.css"
]
}
}, All that being said, the statement "let wiredep work it's magic" really no longer applies as you now have to verify every single package you add and want to inject. |
Hi. |
Still not working. |
@joaocc - Give me a few minutes, I'll clone that repo and take a look at it. |
I just did that now, to be sure. It seems that bootstrap.css is being copied to app/vendor.css. This makes sense, because wiredep is being configures in ./gulp/conf.js to |
Not ideal, but I rolled back to BS version 3.3.4 and setting up like this:
|
twbs/bootstrap#16663
The text was updated successfully, but these errors were encountered: