Hyeseong Kim

Results 156 issues of Hyeseong Kim

## Strategies Mostly using `actions/cache` ### `build-rewatch` Skip build if there are no changes in rewatch sources and its dependencies. ### `build` #### Cache APT dependencies Pre-install Linux dependencies more...

```res let t1 = infinity->Belt.Float.toInt let t2 = infinity->Float.toInt ``` generates ```js import * as PervasivesU from "./stdlib/pervasivesU.js"; var t1 = PervasivesU.infinity | 0; var t2 = PervasivesU.infinity | 0;...

In the compiler v10, since the variant outputs were an integer and were not able to customized, we added the original name as a comment as a hint. e.g. ```res...

The current definition of `React.memo` is: ```res @module("react") external memo: component = "memo" ``` which is incorrect. `React.memo` takes an equality function as an optional second param https://react.dev/reference/react/memo ``` memo(SomeComponent,...

I'm trying to update to the React 19, but the following error occurs ``` React has detected a change in the order of Hooks called by FilterContextProvider. This will lead...

This framework doesn't work with standard JavaScript module semantic because of a circular dependency on required configuration. For example in the [official example](https://stackflow.so/guided-tour/activity), `MyActivity.tsx` module and `stackflow.ts` have circular dependency,...

I made a Unicode library that is much smaller and faster than graphemer. Check it out: https://github.com/cometkim/unicode-segmenter?tab=readme-ov-file#unicode-segmentergrapheme-vs It ensures compliance with the latest Unicode data by performing tests and fuzzing...

CLA Signed
shared with relay team

We have this in the `Core` module. ``` @val external window: Dom.window = "window" @val external document: Dom.document = "document" @val external globalThis: {..} = "globalThis" ``` (ref: https://github.com/rescript-association/rescript-core/blob/22642ea/src/RescriptCore.res#L47-L49) However,...