Error 13 with Foundation when trying to start Grunt
So, I found a solution to this error thanks to:
Michael Degley-Angeli
(9/11/2014) - Looks like Micheal removed his post from the following link / thread
http://foundation.zurb.com/forum/posts/19063-grunt---error-error-reading-values-after----libsass
Turns out this is a bug with Foundation and just started today. (9/10/2014)
Decision:
Just remove! global from line 13 to
bower_components / base / scs / base / _functions.scss
and run grunt like so:
./node_modules/grunt-cli/bin/grunt
Note. Be careful if your bower.json compiles with the latest Foundation.
source to share
Just updating grunt-sass seems to do the trick, see Paul Angus's answer on the Zurb forum
npm install --save-dev grunt-sass
Then it grunt build
should compile without error.
source to share