meteor-css-modules
meteor-css-modules copied to clipboard
The `sourceMappingUrl` comment that is added to the bottom of our styles (that appear in the HTML head) doesn't actually resolve to a proper source map. I'm using `babel-plugin-react-css-modules` instead...
This isn't really an issue with CSS Modules, but it took me a few minutes to figure out what's going on. I had a perfectly working page in my app,...
(Seeing this with Meteor 1.6.0.1, did not check with 1.5) Say I have : - ComponentA.js : some react component ``` import ComponentB from './ComponentB'; // relies on implicit .js...
I'm in the process of moving an existing app, with a large existing global SCSS codebase over to css-modules. Since many of those new component-scoped styles are using vars /...
I have SSR working beautifully with meteors new `server-render` but unfortunately the flash of unstyled content pretty much makes it unusable. I know this isn't really an issue with `meteor-css-modules`...
Hi @nathantreid Thanks for all your great work for community. I just wanna to upgrade my existing meteor project but it messed up with your module whenever i tried. I...
So, I grew over postcss-simple-vars and need something more capable, and turned to postcss-nested-vars plugin. However, when I try to enable it with this package, I get error: ``` =>...
Hi I tried to update my meteor 1.4.2 beta13 and now I'm stuck... anybody have a pointer what might be wrong here? I've nuked .meteor in home and in project...
The error occurs when the `globalVariables` option is also in use and the postcss-simple-vars config is empty or has an empty fileOptions array: ``` json "postcss-simple-vars": { }, "postcss-simple-vars": {...
https://github.com/tivac/modular-css That seems to be a spin off from CSS Modules, with extended functionality, like `:external`, which solves the biggest gripe I have about using CSS Modules. Just out of...