I am currently using Mindscape Web Workbench to create css from sass. I use a generic site.scss file that imports all other files.
/*** Infrastructure ***************************************/ /**********************************************************/ @import "../../Infrastructure/_Common"; @import "../../Layouts/Layout1/_Layout"; /*** Theming **********************************************/ /**********************************************************/ @import "_Theme";
The mixins that I defined in _Common are not known in _Theme. when the site.css file compiles, everything works fine, but Mindscape Web Workbench intelisense thinks mixins is undefined. Is there a way the plugin will know that these mixins are defined?
Lucas source share