I want to @import the project's scss files instead of linking to the pre generated css file.
Doing so I noticed in scss/style.scss you do @import 'bourbon';. This requires the bourbon files to be installed at the same directory level.
Better use @import bourbon/bourbon as described at the bourbon website.
Still you'd have to install bourbon inside your package folder. So what about completely removing bourbon as it adds quite a lot additonal files?
Especially if you use Bower to manage libraries you don't want to touch the bower_components folder at all.
I want to
@import
the project'sscss
files instead of linking to the pre generatedcss
file. Doing so I noticed inscss/style.scss
you do@import 'bourbon';
. This requires the bourbon files to be installed at the same directory level. Better use@import bourbon/bourbon
as described at the bourbon website.Still you'd have to install bourbon inside your package folder. So what about completely removing bourbon as it adds quite a lot additonal files? Especially if you use Bower to manage libraries you don't want to touch the
bower_components
folder at all.Thanks.