Closed jacobarriola closed 8 years ago
Hey @jacobarriola buddy, thanks for these. Anyway I can get you to submit these against the development branch so I can test? =)
Also, on this item, there are two node packages I'm aware of bourbon and bourbon-neat. These should work well. What are you seeing, @jacobarriola?
Thanks again. =)
@digisavvy the node package name for Neat is called node-neat
, which contains bourbon-neat
within its own node_modules
dir. It's listed in your devDependencies
object within your packages.json
file.
The import path in _app.scss
is looking for node_modules/bourbon/
, which doesn't exist. The import path in_grid-settings.scss
is looking for node_modules/bourbon-neat/
, which doesn't exist as well. It should be node_modules/node-neat/node_modules/bourbon-neat/
.
As a result, I'm getting Sass errors because the files cannot be found.
The import paths in the Sass files were incorrect, causing compile errors.