Skip to content

Rendering differences with node-sass 3.3 and 3.4 #58

Description

@gmhenderson

Consider:

@include component (module) {
    @include option(big) {
        @include part(part) {
            color: red;
        }
    }
}

With node-sass 3.3.3 the output (as I would expect) is:

.module.\--big .module__part {
  color: red; }

With node-sass 3.4.1 the output is:

.module.\--big__part {
  color: red; }

Is this a bug or an expected change? If the latter, how would I achieve the output of the first example?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions