Vladimir Kutepov

Results 114 comments of Vladimir Kutepov

Would be cool to support named exports too Source code: https://unpkg.com/[email protected]/lib/index.js **IN** example: ```js var ReactRelayContext = require("./ReactRelayContext"); var ReactRelayFragmentContainer = require("./ReactRelayFragmentContainer"); var ReactRelayPaginationContainer = require("./ReactRelayPaginationContainer"); var ReactRelayQueryRenderer = require("./ReactRelayQueryRenderer");...

Looks like Hyperapp does not support Custom Elements hydration/recycling. I think this case is different from innerHTML attribute recycling and probably simpler to implement. Instead of adding a special `shouldComponentUpdate`...

Looks like server-side rendering of Custom Elements and recycling them on client-side is not a trivial task. See for example https://skatejs.netlify.com/ and their [SSR docs](https://github.com/skatejs/skatejs/tree/master/packages/ssr) where inline scripts does the...

maybe something like this is better? https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4685bbd27150e7261dd65705b72cc812f9651b43/types/react-router-dom/index.d.ts#L49-L53

This is the same as #93

@Swizz I guess the problem in this code: https://github.com/hyperapp/router/blob/8db6747b3598c5c7832ffe1c0f09311fecb0ceee/src/location.js#L17-L21 This file is used internally and when it being executed it throws an error because `window` is undefined on the server....

probably to fix this issue need to change this line: https://github.com/facebook/fbjs/blob/35d7693c0908820af5a0ed2635dbae45ab6feeb8/packages/fbjs/src/stubs/ErrorUtils.js#L12 to ```js if (typeof global !== 'undefined' && global.ErrorUtils) { ``` PR: #355

Maybe we can do the same with `font-size` ?

Just move `babel-polyfill` to `webpack.config` [like here](https://github.com/kriasoft/react-starter-kit/blob/1ed83b62ee8f85d52832f7eba27f208bdc23a60c/tools/webpack.config.js#L161-L163), everything must work in IE9+ if polyfills will be executed before any other code.

Have you seen https://github.com/kriasoft/react-starter-kit/pull/642 ? Is this exactly what you need?