libsass, node-sass, gulp-sass, my-ass
This error:
Error: `libsass` bindings not found. Try reinstalling `node-sass`
was showing up in older Bedrock projects, causing two devs to pull some hair out—well one of them still has hair—and it turned out to be a simple update of gulp-sass
in the packages.json file:
- "gulp-sass": "^1.3.3",
+ "gulp-sass": "^2.0.0",
npm update
and you’re good to go.