I'm trying to use the library https://github.com/welldone-software/why-did-you-render to log the reason for a component re-rendered. In order to get a functional component to be eligible for render...
I’ve used this api a bit more and this might actually be intended to only be used for type inference. That is, when the params are not provided or empty, the resulting type uses the default value f...
### Description
When using `Erase` with a single member DU, the generated python throws an import error when trying to import the Erased type, whereas the same code works in JS.
### Repro cod...
Yes, luckily it results in a hard error that prevents the script from executing, but having a compile time error benefits library development as well to find unsupported usages without requiring fu...
I can't seem to get a not found fallback page to work. I'm trying to produce the static site to be served from an nginx container. Currently, I don't get a 404 page generated. If I redirect everyth...
That makes sense. The issue I was having was that no html file was generated for the not found page without using getStaticPaths. I assumed that was for explicitly parametrized routes, but now I se...
Just found a workaround to force the 404 page to render: Pass `getStaticPaths` with an arbitrary non-empty array such as `["not-found"]`. Then I can configure nginx with `error_page 404 /not-found/...
I'm seeing warnings like the following
```
React Router Future Flag Warning: Casing of `formMethod` fields is being normalized to uppercase in v7. You can use the `v7_normalizeFormMethod` futu...
Yes I expected the typical unsupported error as well. I guess to handle that every supported method needs to be listed out in the replacements to avoid new passing through.
There's also an issue with `importSideEffects`, which generates `from X import` without any identifier following the import statement, which is invalid syntax.
This was fixed by https://github.com/glutinum-org/cli/issues/163#event-15484755127
```ts
interface Y {
a: string
b: number
}
type X = Partial<Omit<Y, "a">>
```
now produces:
```f...
I was attempting to parse framer-motion's type definitions and found a case where the parser fails. I narrowed it down to the use of Partial parameterized with another type like Omit:
Issue crea...
<!---
IMPORTANT:
When reporting an issue, please try to make your code as minimal as possible.
-->
Issue created from [Glutinum Tool](https://glutinum.net/#/editors/fsharp-code?typeScri...
Thank you for the quick response! That explains the current behavior. I'll parse the string first and then later try out the blob optimization by sending a buffer.
I'm curious how jsonb columns are meant to be handled. If I pass a js array of objects as one of `execute`'s params, I get `Unknown JSI ArrayBuffer to variant value conversion, received object inst...
I'm curious how jsonb columns are meant to be handled. If I pass a js array of objects as one of `execute`'s params, I get `Unknown JSI ArrayBuffer to variant value conversion, received object inst...
<!---
IMPORTANT:
When reporting an issue, please try to make your code as minimal as possible.
-->
Issue created from [Glutinum Tool](https://glutinum.net/#/editors/fsharp-code?typeScri...
<!---
IMPORTANT:
When reporting an issue, please try to make your code as minimal as possible.
-->
Issue created from [Glutinum Tool](https://glutinum.net/#/editors/fsharp-code?typeScri...
<!---
IMPORTANT:
When reporting an issue, please try to make your code as minimal as possible.
-->
Issue created from [Glutinum Tool](https://glutinum.net/#/editors/fsharp-code?typeScri...
I noticed the `actionCreators` config option that lets you provide a set of preconfigured values for sending actions, and it seems that it structures the actions in a way that are different than th...
### Description
The redux devtools allow triggering actions from the UI, but the only message type currently handled by the elmish debugger is `MsgTypes.Dispatch`. I was able to modify the debug...