Looks like the master version of compiler stopped properly recognizing mixin multiple values for ie. Bourbon flex()
This code which is proper and was working fine before :
@include flex(X Y);
now excludes Y and only considers X.
Sample code :
@include flex(0 100%);
After compilation using master branch :
flex: 0;
Should be :
The only solution right now is to stop using this mixin and break it into two separate rules.