Nikita Butenko
Nikita Butenko
Blocker for #97
Should work perfect with https://www.npmjs.com/package/react-day-picker (looks like it is the best one in the wild)
looks like it is hardcoded and cannot be removed with configuration and it is done in `babel-plugin-styled-components` 
It seems relevant to #3. There is a potential (but not correct) solution #12. We also use inject-loader. We ended up never including extra deps and always mock outer stuff....
@jhicken For our project I've built a fairly simple script that collects all js files and creates a basic testing template (that includes module and checks if it is truthy)....
The reason I agree on doublequotes, that things like emmet and webstorm automatically use them for jsx, which they treat more like html/xml (with some minor differences). So coding becomes...
To avoid publishing packages so we can depeloy and test dev version we use this solution at the moment: 1. copy project to `build` 2. copy `node_modules` to `build` (note,...
Well, you don't want to publish on every commit :). I was talking about building docker image on every commit with all sumlinked deps properly resolved to the latest local...
I’ll later post a better script we now use (using yarn pack) which is million times faster. I’m on holidays now and took only my phone with me... We are...
@jwickens 1. Copy all `packages/*` to `.pk` 2. Replace all internal cross-deps with packed files like (NOTE: you do it *before* packing) ```js "@monorepo/bla" => "^0.0.123" // becomes "@monorepo/bla" =>...