daiscog
daiscog
@maxokorokov this is actually a serious concern for accessibility. It's not just about being able to "select" the text of the tooltip. Some partially-sighted users may use screen magnifiers to...
HI! I'm also having an issue with async iteration. I've created [a minimal example here](https://github.com/daiscog/unzipper-issue). The TL;DR is I'm doing something like this: ```javascript const zip = fs.createReadStream(zipFile).pipe(unzipper.Parse({ forceStream: true...
[The docs for the eslint plugin](https://nx.dev/nx-api/eslint#how-nxeslint-infers-tasks) state: > Because ESLint applies configuration files to all subdirectories, the @nx/eslint plugin will also infer tasks for projects in subdirectories. So, if there...
@maxokorokov could you or other maintainers spare some time to review this accessibility fix please?
While I don't object to this move to `intl`, I do have concerns that the lack of browser support for some locales will mean features that used to "just work"...
The really annoying thing about this is that it breaks the type system, because compile-time type checks think `foo?.value` in a template is `T | undefined`, whereas it's actually `T...
@chrishoage thanks for the hint, that's worked for us! Specifically, in our `jest.config.ts`, we've added: ```ts export default { //... moduleNameMapper: { '^quill$': 'node_modules/quill/dist/quill.js' }, } ``` For those using...
@leon `pnpm run d` then `[tab]` actually already works for me (I'm using pnpm version 9.4.0). However I would like to not have to use `run` or `run-script` for completion,...
I kept getting this. Eventually I noticed that there was a file at `.nx/workspace-data/d/disabled` with the content `true`. After deleting this file, the daemon started working as expected again.