silverwind

Results 1496 comments of silverwind

I recently tried migrating to tailwindcss 4, but it's a shitshow. Their migration tool is misses many cases and produces a number of false replacements as well. Currently I don't...

Thanks. I plan to use `srgb` color space only. I assume `oklab` may be another somewhat popular color space in global use.

Still seems to be an issue on Node 24.4.0, Windows, [example failure](https://github.com/silverwind/updates/actions/runs/16314766134/job/46077915015), stderr is the same as OP. Node 20 and 22 are good. ``` Assertion failed: !(handle->flags & UV_HANDLE_CLOSING),...

There is some weird deprecation showing up on jQuery `.on`: ``` /home/runner/work/gitea/gitea/web_src/js/features/repo-settings.ts 125:25 error `on` is deprecated. Deprecated. Use \`{@link JQuery.Event }\` in place of \`{@link JQueryEventObject }\` @typescript-eslint/no-deprecated 134:31...

This `devTarget` corresponds to [`jsc.target`](https://swc.rs/docs/configuration/compilation#jsctarget), right? I wonder what the possible values are, the SWC docs are very sparse on it. Likely it's not fully compatible to vite/esbuild [target](https://esbuild.github.io/api/#target).

## Fail ````js import foo from 'module/path/to/file'; ```` ## Pass ````js import foo from 'module/path/to/file.js'; ```` `import/extensions` does already flag this, but I think it does actual resolution. [Node docs](https://nodejs.org/api/esm.html#esm_terminology)...

An autofix for this rule would also be awesome. `import/extensions` doesn't provide one, making it very tedious to manually refactor big projects from `./file` to `./file.js` imports. I guess such...

Some general docs on how auth against remote SSE servers work would be nice. I wonder if it'd possible to use `--env` vars to pass a auth token to the...

If `process.features.typescript` (v22.18.0+ or v22.6.0+ with flag) is truthy, `await import` could be attempted automatically if there is no existing loader configured for `.ts` or `.mts`.

I was also looking for an option (cli and/or config file) to specify minimum word length of 3 or 4, to reduce the amount of false-positives on abbreviated names like...