Mark Erikson
Mark Erikson
Haven't had a chance to look it over yet - was just glancing at the issues list. I'll try to check it out later.
Whoa, whoa, hang on. I may have been given commit access to Redux, but I am in no way an official arbiter of what gets into the repo. I've added...
Yeah, that's sort of the point - the code will be shorter, less tightly coupled, and more testable. And I honestly don't think that React-Redux is that much to explain....
The repo at https://github.com/mmacaula/cesium-webpack instructs you to copy Cesium's assets to a folder before you can begin development. The setup I have in this repo allows you to directly serve...
Yeah, my actual app has a number of specific needs for proxying behavior and some other stuff, so I built my own dev server that uses `webpack-dev-middleware`. This repo is...
It looks like the build setup is somehow looking at what it _thinks_ is `import react from "react"`, and instead it's ending up with `@reduxjs/toolkit/src/react` (which is A) our source...
It looks like it's getting into `src/react`, which does re-export from the root entry point. The question is why it's getting into `src` at all. Ah, that might be related.
@ecalcutin to be clear, this is _some_ kind of an issue with your build setup, whether it's Webpack or the TS config. If you can provide a project that reproduces...
That was what I was wondering, yeah.
Can you show how (and why) you're using that type?