I just started using gulp-sass , is there a βsimpleβ way to find out which version of Sass is used?
I don't think this is too important, but I'm using gulp-sass in Visual Studio 2015 (CTP6).
I need to know, because I want to use a Sass mixin, which requires a certain minimum version of Sass.
At the moment, if I want to know which version of Sass is used, I try to follow this type, gulp -sass is a shell for node-sass , which in turn provides Node bindings for libsass , which is the C compiler for Sass .
So, to find out which version of Sass is used in my environment, I have to follow the chain and try to determine which version is used at each step and which version it uses for the next step.
Surely there should be an easier way?
source share