I'm trying to run our gulp sass task and I keep getting the following error:
".features" failed to @extend ".text-center".
The selector ".text-center" was not found.
The selector appears in a file which is @import
ed before the file that throws the error. They are both .scss
files and loaded in the correct order (I can get sass to throw a syntax error before the .text-center
class definition.
What is really strange is the fact that this is a shared repo (which I'm up to date on in the master branch) and we all have the same version of sass (managed by npm):
$ node-sass --version
node-sass 3.5.3 (Wrapper) [JavaScript]
libsass 3.3.5 (Sass Compiler) [C/C++]
We're out of ideas of why only my version throws this error, so any help would be appreciated.