Results 406 comments of Nate Wienert
trafficstars

@DylanPiercey it's hard to find any docs at all for caching, I'm attempting to get some of it working now but could really use any decent examples, know of any?

I tried this, and tried so many different things (using memfs, unionfs and fs-monkey), and in the end couldn't get it all to play nice for various reasons, even after...

Looks good but pretty verbose. Could we do a something that is easier to type?

Is there a way to have a bash pragma for the code block? Would mess up github I assume though. Like bash @ignore

It’s not about laziness. The whole point is to make it easy to read as well when you’re editing. And to encourage people to write good documentation. Could be better...

It’s very clear what it ignores. It’s less verbose, but not less clear in my opinion. If it works already then it seems like a great option for many. If...

After a few tries for whatever reason the alias works now: ```js const jsxRuntime = require.resolve('react/jsx-runtime.js') webpackConfig.resolve.alias = { 'react/jsx-runtime.js': jsxRuntime, 'react/jsx-runtime': jsxRuntime, } ```

I need to call methods on the children to do various things with them. An example is focusing their text input on the item you click. On Thu, Apr 20,...

Yea the input is in a component. I am calling focus on the parent component. But good point I guess I can nest it, confusing to figure out though would...

Yep that or it could take a function as children possibly which I think avoids that problem as well. On Sun, Apr 23, 2017 at 6:59 AM Joshua Comeau wrote:...