Skip to content

Resolve variables option only goes one level deep. #38

@dietergeerts

Description

@dietergeerts

I have the following SCSS:

/// @group color-colors
/// @type Color
$yellow: #ffde17 !default;

/// @group color-theme-colors
/// @type Color
$warning: $yellow !default;

/// @group color-subject-status-colors
/// @type Color
/// @link needs-review
$subject-status-needs-review: $warning !default;

And this resolves to:

$yellow: #ffde17;
$warning: #ffde17;
$subject-status-needs-review: $yellow ;

It should go down until the value isn't a variable anymore

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions