Andre Wiggins
Andre Wiggins
Really love this tool! Wanted to update it to the latest version of rollup to take advantage of all the tree shaking improvements that have occurred since the v1 release...
PR to check out the perf impact of using shift for our queues. Since these code paths aren't as hot as the core diff I'm not expecting much change. Feel...
This PR fixes a bug where we would use `getDomSibling` with `oldChildren` when the oldVNode tree was broken (since we set `oldChildren[i] = undefined` if we are re-using the vnodes)....
My goal with this change is to better understand what parts of our component implementation are generic and which are specific to React-style components. So I've added a separate `renderReactComponent`...
This change removes the `isNew` variable Dependent on #3107 for now Great catch by @developit
In the spirit of #2011, queue the `applyRef` calls as `_renderCallbacks` so they are invoked after the entire DOM is updated. This change effectively undos 40212ebea from #1658. I always...
My attempt to include more Jest globals. Sharing to get early feedback though I need to take a break from this for now to focus on other things. fakeTimers.test.js has...
With the new E2E test suite, I noticed that coverage is not properly reported when the user provides a custom webpack.config.js. This PR fixes that by detecting if webpack loaders...
Continuing our discussion from #54 and slack, wanted to see what people think about this. Pros: 1. Reduces installation size and time of karmatic and its deps 2. Still allows...
Since the package.json specifies that the min NodeJS version is 12, I've updated the TypeScript to target es2017. The only change this has in the output is that async/await is...