You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.
I'm having trouble with an older version of FoundationPress. I'm getting the libsass binding was not found error which I know has happened before but it's been a while so I wondering if anybody would have some up to date help with this.
New installs of Foundation work fine, it's just older versions.
mac$ grunt watch
Loading "sass.js" tasks...ERROR
>> Error: The `libsass` binding was not found in /Users/mac/Code/project/wp-content/themes/FoundationPress/node_modules/grunt-sass/node_modules/node-sass/vendor/darwin-x64-46/binding.node
>> This usually happens because your node version has changed.
>> Run `npm rebuild node-sass` to build the binding for your current node version.
My system is set up as follows:
OS X El Capitan 10.11.2
node -v: v4.2.3
npm -v: 3.5.3
bower -v: 1.7.2
grunt --version: grunt-cli v0.1.13
I don't know if this helps but here is the package.json file.
I have resolved this issue so I will leave my solution here, which was found here
The libsass binding was not found in x
For context this error is almost always because npm install ran with a
different version of node than the version you're current running.
Since node-sass is a native module we build the c++ code on installation.
That code is tied to the version of node that ran the installation. If you
change your node version the extension needs to be rebuilt, that's what npm rebuild does.
So there you go, my current version of node was different form the version of node I installed with and npm rebuild fixed the issue.
I'm having trouble with an older version of FoundationPress. I'm getting the libsass binding was not found error which I know has happened before but it's been a while so I wondering if anybody would have some up to date help with this.
New installs of Foundation work fine, it's just older versions.
My system is set up as follows:
I don't know if this helps but here is the package.json file.
Thanks in advance, any help is appreciated.
The text was updated successfully, but these errors were encountered: