SassDoc / sassdoc

Release the docs!
http://sassdoc.com
MIT License
1.41k stars 56 forks source link

Bug: Same dependency/dependee listed multiple times #530

Open reneroth opened 5 years ago

reneroth commented 5 years ago

... if used more than once in a function/mixin

Stupid example:

@function double-value($value) {
  @return $value * 2;
}

@mixin doubledouble($attribute, $value) {
    #{$attribute}: double-value($value) + double-value($value);
}

Will state that doubledouble requiresdouble-value 2x

I will try to look into this as soon as I find the time.

reneroth commented 10 months ago

just fyi the linked closed PR is a functional fix for this :)