Dawid Karabin

Results 39 comments of Dawid Karabin

We have exactly the same problem! It's weird cause when I run only one task: ``` gulp webserver ``` The server works, but with multiple tasks is broken. 0.5.0 works...

@ApoorvSaxena I'm just curious, what was your motivation to change `.appendChild` to `.append`, because it's newer API? https://github.com/ApoorvSaxena/lozad.js/commit/3ae5f9b275db78aa0b264d85e9f14a45a5f7e7d8#diff-0fc67cf1417ed1d78c12555dd5590d00R22

@abhinicky84 You need to polyfill `Element.append` for older browsers **polyfill-element-append.js** ```js if ('Element' in window && 'append' in Element.prototype) { return; } /** * Generated by URL and opened in...

Looks great, thanks. You are my hero :)

@legomushroom What about a bit simpler approach and morphing only path data? ;)

I think that it's related to https://github.com/postcss/postcss-scss/issues/90 so I suspect that `postcss-scss` cannot handle things like `.#{$breakpoint}-#{$i} {`.

@jenshedqvist This issue is about a bit different problem. In your case, use this code ```jsx ... ``` and before starting dev server remove the `.cache` folder ```sh rm -rf...

You have to install https://github.com/longlho/postcss-import-sync2 and import it as the first plugin like below ([configuring babel-plugin-react-css-modules](https://github.com/gajus/babel-plugin-react-css-modules#configuration)). Maybe newer `postcss-import` would also work here but [it doesn't have sync mode](https://github.com/postcss/postcss-import/issues/180) and...

@jkhaui Look at `demo` folder https://github.com/hinok/babel-plugin-react-css-modules/tree/feature/scss-partials/demo Commit: https://github.com/hinok/babel-plugin-react-css-modules/commit/0bf3624778d3eaeca816e0f4983953ab47bd706b I upgraded also `webpack`, loaders and all other dev dependencies to the newest versions in `demo/`.

@phegman Seems related to https://github.com/gajus/babel-plugin-react-css-modules/issues/154