Skip to content

Instantly share code, notes, and snippets.

@tivac

tivac/a.css Secret

Created January 30, 2019 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tivac/43b94e87927d8838305f2ae88fb0d789 to your computer and use it in GitHub Desktop.
Save tivac/43b94e87927d8838305f2ae88fb0d789 to your computer and use it in GitHub Desktop.
@modular-css/rollup chunking issue repro
.a {
composes: c from "./c.css";
color: aqua;
}
import css from "./a.css";
console.log(css);
.b {
composes: c from "./c.css";
color: blue;
}
import css from "./b.css";
console.log(css);
.c {
color: cyan;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment