Kirill Konshin

Results 100 comments of Kirill Konshin

Also I notice that progressbar never settles, it always shows `XX pages In Progress`.

Also I noticed that with the codegen running everything becomes extremely slow, dev pages open for seconds (instead of almost instantly). I disabled the `codegen` option and the performance went...

Makes sense. Thank you for prompt response. Placing the file into `/types` dir worked. And yes, documentation does not mention it...

To me this looks like magic :) by default — maybe, but the check to not place it in `src` is a must.

> Not sure if it related but I'm finding state updates are generally very sluggish when using next-redux-wrapper this is when I use > > ``` > const { store,...

Temporary solution: ```ts import { saveAs } from 'file-saver'; import { save } from '@tauri-apps/api/dialog'; import { writeTextFile } from '@tauri-apps/api/fs'; export const downloadFile = async (filename, text, type =...

Usually this kind of management is required for (as bare minimum) TS lib + website, when TS lib in watch mode has to produce some output at least once, then...

True, but it’s an extra tool and it looks awkward to have all such scripts like this: “wait-on blabla && real-thing”. It would be much more convenient if turbo config...

I’d say that it could directly call wait-on package, by passing args. Or just call a certain NPM wait script like in my case. It should be just a gate...