<!-- before posting an issue, try chatting on https://gitter.im/pattern-lab/node --> <!-- before posting an issue, verify you are running at least Node 4 or 5 --> I am using Pattern Lab Node `v2.5.0` on `Mac`, with Node `v6+`, using the `Gulp` Edition. ##### Expected Behavior for a given pattern X and his pseudo pattern : patternX: ``` <h2>{{ data }}</h2> {{> patternY:modifier--foo }} ``` patternX~pseudo.json: ``` { data: "yyy" } ``` this should output the included pattern Y with the style modifier patternX-pseudo html output : ``` <h2> yyy </h2> <div class="patternY modifier--foo"> bar </div> ``` ##### Actual Behavior The styleModifier is not included : ``` <h2> yyy </h2> <div class="patternY"> bar </div> ```