I have a bunch of variables defined in _variables.scss. I don't want to import the whole file as it has some dependencies. I just want to import one of the variable from that file into another scss file.
Is it possible?
Use Case
I have two sets of scss files. Both have independent compilation flow. For one set, I have defined bunch of needed variables in _variables.scss. I need all these variables to compile the first set of scss files. Now there is second set of scss files, which need very few of the above defined variables.At present, I duplicated those few variables into _variables2.scss and imported it.