Hyeseong Kim

Results 156 issues of Hyeseong Kim

## Description Tried decode url-encoded filename before to store remote file. So it can be served properly via generated publicURL ## Related Issues Fixes #35636

type: bug
topic: core

Using wrp for edge runtimes would be a super interesting use case. Schema-driven Streaming RPC on the edge runtimes like Cloudflare Workers is very promising but I think it has...

This is re-trying PR from https://github.com/arcanis/clipanion/pull/137 Tested on Node v16 with TypeScript v3.8, both CommonJS and ESM `node index.mjs test`: OK ```js import {Command, Option, runExit} from 'clipanion'; runExit(class MainCommand...

The official maintenance for Node 16 ended last October. Perfect timing This won't break anything right away, but it should be marked as a breaking change. Then we can make...

I know that's not a valid module name. Nonetheless, lowercase filenames build fine and are not treated as modules. I expect the same behavior for hyphenated filenames. Hyphenated filenames are...

Proposes a new type of GenType that is incompatible with the existing GenType (will probably have the name GenType v2 or something quite different) ### Motivation GenType is a must...

input: ```res @genType include RescriptCore ``` error: ``` FAILED: src/Core.cmj Fatal error: exception File "jscomp/gentype/TypeVars.ml", line 14, characters 16-22: Assertion failed ```

### Motivation Deciding on the module format is one of the most important parts of getting a JavaScript library published on NPM. A leaf project usually uses only one format,...

Imagin some code generator that transforms GraphQL schema into ReScript type definitions For given GraphQL schema: ```graphql interface Node { id: ID! } type User implements Node { id: ID!...

enhancement

Use case: to represent GraphQL union value ```res type user = { id: string, } type chat = { id: string, } type message = { id: string, } @tag("__typename")...

enhancement