I have been using the zurb framework for a long time. I am using bower + compass setup as described here
http://foundation.zurb.com/docs/sass.html
Today, while working, I noticed that it took a while to load the page, and trying to fix the problem, I noticed that there were many duplicate directives in the generated css file.
I am sure that this is probably what I'm doing something wrong, but I donβt know where to start looking, and I donβt even know what information to provide that can help narrow down the problem.
Base 5.4.5 -> 5.4.7 actually works
Compass 1.0.1
Any help was appreciated.

*************** Update: ******************
So, as it turned out, I actually did 5.4.7. I looked in _functions.scss for @Cartucho
and it looks like the patch has:
// IMPORT ONCE // We use this to prevent styles from being loaded multiple times for compenents that rely on other components. $modules: () !default; @mixin exports($name) { $module_index: index($modules, $name); @if (($module_index == null) or ($module_index == false)) { $modules: append($modules, $name); @content; } }
@KatieK some examples of output css on line 90
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
on line 2885
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
on line 3085
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }