-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Description
Commented variables should not be parsed / ignored
Input:
$black: #000;
// $white: #fff;
Output:
{
"variables": [
{
"name": "$black",
"value": "#000",
"compiledValue": "#000"
},
{
"name": "$white",
"value": "#fff",
"compiledValue": "#fff"
}
]
}
Expected:
{
"variables": [
{
"name": "$black",
"value": "#000",
"compiledValue": "#000"
}
]
}
Ignore variables with annotations (analogue to sections).
Proposal:
- ignore single line:
// @sass-export-ignore - ignore multiple lines (section):
// @sass-export-ignore="internals"
...
// @end-sass-export-ignore [optional]
Metadata
Metadata
Assignees
Labels
No labels