Currently, if a file contains the same content as another, it's skipped. This can fail in cases like this:
/* main.css */
@import "foo/index.css";
@import "bar/index.css";
/* both foo/index.css and bar/index.css has this content */
@import "baz/index.css";
This causes bar/baz/index.css not being imported.
Currently, if a file contains the same content as another, it's skipped. This can fail in cases like this:
This causes
bar/baz/index.cssnot being imported.