Anton Korzunov

Results 537 comments of Anton Korzunov

One could set `checkSignatures: false,` via the `setConfiguration` or `imported.json` to disable signature comparison - only mark(filename) would be used in this case.

Well, the first question is about your ability to use babel macros with `swc`, that would be the first problem to solve. Adding `swc` plugin is a popular request right...

The future for client side is #77, or another way to prefetch the data, making code splitting more "predictable", and, honestly, removing the original idea about Suspense - _death by...

I am looking forward to use `React.lazy`(with custom _thenable_) underneath, thus RIP would only orchestrate chunks loading.

🤦 https://github.com/theKashey/react-imported-component/blob/0b55a5489a62684ff6ecbec4e9b101d49ebc8015/src/loadable/loadable.ts#L149 - it should be straight opposite condition. But basically your problem is about missing babel plugin or macro.

Usually via `.babelrc`, or `babel-jest` configuration if you have it as a separate.

That's a __feature__. You are returning a reference to an input value, declaring that _you need that object_, and thus it would be added to a dependencies list. As long...

Not exactly ```js const obj = { a: 1, }; const result = useMemo(() => obj, []); // eslint: Hey, missing dependency const result = useMemo(() => obj, [obj]); //...

You don't get the point - _the object should be treated as the same_ __until__ they are become a part of a result. That's working ok if the original state...

_Structural sharing_ which is base layer for immutable structures means that _if object updated - it is updated_, and if you are passing a new object - that's a new...