meteor-css-modules icon indicating copy to clipboard operation
meteor-css-modules copied to clipboard

Results 27 meteor-css-modules issues
Sort by recently updated
recently updated
newest added

Trying to set up CSS Modules, I stumbled on these issues that I couldn't find mentioned in the docs: - What's the difference between using `globalVariables` or `fileOptions` in simple-vars...

We are using chimp to run acceptance tests I was hoping there is away to generate the class names in our tests? Eg AppLayout_classname

I was able to reproduce a `Can't find module ./[NAME].scss` error when using the `"specificArchitecture": "os"` option. It works fine with `false`. Here is the call stack: ``` require.resolve @...

When using css modules in a package: _myapp/packages/mypackage/package.js_ ``` Package.describe({ name: 'me:mypackage', }); Package.onUse(function(api) { api.versionsFrom('1.3.2.4'); api.use('ecmascript'); api.use('nathantreid:css-modules'); api.mainModule('mypackage.js'); }); ``` Where is it getting it's package options from? the...

Hi Nathan, Sorry to bother again. I usually put my app-code in a directory called `app` so `flowrouter-ssr` can render it. However, when doing this with react-toolbox I get this...

This PR adds support for Meteor 3/ async. Disclaimer, I have NOT updated the tests yet. I got it to run with my application, and wanted to share the update...