-
Notifications
You must be signed in to change notification settings - Fork 14
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
Gulp node-bourbon issue #36
Comments
includePaths: [].concat(
'./node_modules/bootstrap-sass/assets/stylesheets/',
require('node-bourbon').includePaths,
require('node-normalize-scss').includePaths
) |
Still not got it working, even with your answer... It's including normalize and bootstrap perfectly but it does not with bourbon. Even giving the path manually Thanks |
require('node-bourbon').includePaths, You are welcome |
Hi,
I'm trying to use bourbon, but I ran into some issues. I'm resolving my paths via the gulp-sass package (includePaths) to my bootstrap and bourbon. Bootstrap works, but somehow I can't get it to work with Bourbon. It doesn't get imported in my css files. I do not get any helpful error messages either.
To test if it was the bourbon packages I tried to include normalize.css alone (not the inbuild one of bootstrap), and and I got normalize.css working, so it has to be something with bourbon?
This is how I try to access bourbon:
includePaths: [ "./node_modules/bootstrap-sass/assets/stylesheets/", require('node-bourbon').includePaths, require('node-normalize-scss').includePaths ]
I import it in my main.scss file with
@import 'bourbon';
.Does someone know what to do to fix this?
Thanks!
The text was updated successfully, but these errors were encountered: