You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 24, 2024. It is now read-only.
test1.scss: $w: white
test2.scss .c{color: $w}
Run in win10 cmd: node-sass main.scss main.css
No error, generated content: .p {color: white; }
But if I run the watcher: node-sass --watch main.scss main.css
Then make changes to test2.scss and save, error:
{
"status": 1,
"file": "C:/Users/xxx/Desktop/test2.scss",
"line": 1,
"column": 10,
"message": "Undefined variable: \"$w\".",
"formatted": "Error: Undefined variable: \"$w\".\n on line 1 of Test2.scss\n>> .p{color:$w}\n ---------^\n"
}