Anton Ignatov

Results 12 comments of Anton Ignatov

Maybe we should prefix only first token in selectors. This will round specificity for elements and pseudo-elements with other 🤔 - `div > div > span` → `0,0,0,3` - `.clickTest`...

Yeah, but this is the price for using nested tag styles. P.S. Styling elements with tags is usually an exceptional or bad idea.

If you need highly interactive application with a lot of content then I want to suggest you check [tvdml](https://github.com/a-ignatov-parc/tvdml). It has `react.js` support added in `v6` with full virtual dom...

If you don't want to change `atvjs` to something else I think you still need to check `DataItem` api and [example](https://developer.apple.com/library/content/documentation/TVMLKitJS/Conceptual/TVMLProgrammingGuide/GeneratingContentForYourApp.html) Apple kindly provided in their docs.

I guess the best you can find now is [the reconciler's config](https://github.com/facebook/react/blob/47b003a828fe98e12947ba98e819ec4e617deef1/packages/react-reconciler/src/forks/ReactFiberHostConfig.custom.js) for the list of the available hooks. Implementation details can be found in one of the available host...

As an alternative that can be useful to you, I would like to share our internal setup that we use to get the best DX from bazel and webpack: 1....

> However can you clarify the Webpack rule you wrote with the bazel aspect? I simply passed in absolute paths instead of relative paths. If I understand you correctly and...

> Would there be any problems with using babel-loader with typescript preset instead of ts_project? Sorry for jumping into your conversation, but I would like to share an important issue...

@xnerhu sorry if I expressed my idea in a complex way. I'll try to explain it with an example. Please imagine we are writing our code in TS and using...

There is a workaround for throwing an error on warnings. We can use [`getStack` argument](https://github.com/facebook/prop-types/blob/master/checkPropTypes.js#L41). ```js PropTypes.checkPropTypes(spec, values, 'prop', name, () => { process.nextTick(() => { throw new Error('Check has...