jods
jods
I love and I am sometimes still surprised how well linq2db optimizes (dynamic) queries that sometimes contain large unused portions. 👏 It's not critical but there is an opportunity to...
## Search Terms type-only import ## Suggestion The new type-only import syntax supports most variations of `import` statement but not this one: `import type 'mod'` It may seem stupid because...
I would like to suggest a few improvements to HMR. I observe `updateRoutes` is only invoked when adding or removing page. In `updatePage` there's a comment: ```js // no need...
`server.reloadModule(mod)` is documented as the way to push HMR here: https://vitejs.dev/guide/api-javascript.html#vitedevserver I've used it in `beforeWriteFiles` and it worked for me. I made `updateRoutes` non-async because: - You could await...