Felix Gnass
Felix Gnass
The Yeoman documentation progress is tracked here: https://github.com/yeoman/yeoman/issues/829
node-dev only watches files that have been `require()`'d. It does not scan the whole directory tree (which it would have to do in order to watch arbitrary files). For that...
The "experimental" note is now removed and there is a new SSR section in the docs: https://capri.build/docs/ssr/
This is fixed by 3d4634cdfddbd9b7526d30143c5b2d2354eaf9a1 which does not only check for object identity but drops params that have the same `name` and `in` (favouring the param defined deeper down the...
Thanks for bringing this up! Fun fact: I originally tried to base Capri on vite-plugin-ssr but failed to get it working. If I remember correctly, especially being able to render...
I think one GitHub issue per ticket would be best. My employer sponsors the work on Capri, so I can regularly spend some time on maintenance.
Capri does two things with the index.html: 1) It injects the html fragments that are returned by the render function in the entry script. 2) It injects the hydration script....
I'd need to take a closer look at some VPS internals first, in order to answer your question. BTW, if you want SSG with file-system-based routing, you could also take...
Thanks! I agree this makes more sense. What about moving the whole `fs.writeFileSync(...)` part to the `before-quit` handler in order to get rid of the `quit` var?
I think you're right. I thought we could always prevent the default and hide the window but then the app will no longer exit.