Ray Booysen

Results 15 comments of Ray Booysen

I have the same issue. I have my own CSS, and using Bootstrap CSS. I have my own ExtractTextPlugin instance which extracts CSS to a file. This loader, once enabled,...

I've got this working through: https://github.com/NMFR/optimize-css-assets-webpack-plugin which does a post-build optimise. The downside of this is that the source maps I get are from CSS, not from the original SASS....

Seems the definitions exist in `dev` with version 0.3.0 and has the correct `typings` key in package.json. Would need to be released.

Would be nice if they were part of this repo adding in a typings element to package.json so it's easier to keep them up to date.

I've reverse-engineered the JS CSS into a single LESS file. More than happy to integrate this as a PR where as part of the build, we output plain CSS. This...

I haven't had time yet unfortunately. It is on the TODO list. On 4 March 2016 at 16:36, Michael Worm [email protected] wrote: > +1 facing the same problem as the...

@gillchristian This doesn't work for me in Typescript because this line: ` handler[action.type] ? handler[action.type](state, action) : state;` `action.type` is resolved to be of type `any`.

Thanks will give it a try. Checking your code's TS, there is still the error with the handler object. How are you disabling this error?

@gillchristian Another interesting thing. In a vague roundabout way, I wrote something similar to yours (but I use immer to mutate a draft instead of recreating the state each time)....

You absolute hero! I've been battling with my implementation of `Handler` because I didn't know how to express the key in the actions type properly ``` type Handler = (s:...