silverwind
silverwind
To implement navigation warnings like "Are you sure to leave this unsaved page?" it would be nice if there were a way to prevent [`replaceState` and `pushState`](https://github.com/Lusito/react-nano/blob/3efa0ac8503688c2796a19504e07dd57eef2da18/packages/router/src/history.ts#L21-L30), ideally in a...
The `errorCode` and `warningCode` options were removed at some point, they are not recognized by golangci-lint any more at least and they do not match their published json schema. `confidence`...
Depends on https://github.com/nodejs/node/issues/48412
Sometimes it does not use multiple processor cores for some reason. I think we're better off spawning child processes instead of relying on this mostly undocumented libuv feature `UV_THREADPOOL_SIZE`.
`@stoplight/spectral-runtime` and `@stoplight/json-ref-readers` indirectly depend on `node-fetch@2` and `[email protected]` which triggers a runtime deprecation warning in Node.js 21 and above. As per https://github.com/node-fetch/node-fetch/pull/1793#issuecomment-1839050150, the likely only option is to upgrade...
This works and is detected: ```js async function a() {}; a(); ``` But this is not detected (and passes): ```js const a = async () => {}; a(); ```
`Handlebars.compile` allows to disable HTML escaping via `noEscape` but I'm looking for more control over the escaping to support arbitrary output formats with their own escaping rules. I'd propose a...
[hx-indicator](https://htmx.org/attributes/hx-indicator/) currently provides no way to suppress it for specific elements, e.g. to achieve showing a loading indicator by default, but don't show it for specific elements. It would be...
### Description https://try.gitea.io/silverwind/symlink-test/pulls Comment count here says "1" but it should be "2" as there is one regular and one inline review comment. ### Gitea Version main ### Can you...
Currently the module is in `devDependencies` so is inlined into the vite build. Depends on https://github.com/vitejs/vite/issues/14674.