-
Notifications
You must be signed in to change notification settings - Fork 12.2k
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
Add less and scss to main in bower [BREAKING CHANGE] #6227
Conversation
Also, per the updated
|
so it should be "main": [
"less/font-awesome.less",
"scss/font-awesome.scss"
], ? |
Correct. |
Done. But what if people are not use scss or less but just css? |
3d86d43
to
7343eba
Compare
CSS should be excluded if the Less/Sass it's generated from is included Globs are invalid Font files shouldn't be included Ref: bower/spec#43
@stevemao I've just read this blogpost http://blog.getbootstrap.com/2015/06/15/bootstrap-3-3-5-released/#wiredep-and-bower does it help you? |
Yes, that's exactly what concerns me. |
Done via 1188452 thanks! closing here |
Sorry for this breaking change but please use overrides "overrides": {
"font-awesome": {
"main": [
"./css/font-awesome.css",
"./fonts/*"
]
}
} Refers to twbs/bootstrap#16663 🔒 |
Make
wiredep
or other bower tools work for less and scss version.