Verekia

Results 69 comments of Verekia

I only work on 1 project and regularly open and close Triplex. Currently it always shows the splash screen and I have to select the same project with the file...

@alvarosabu It seems like the upcoming `manual` mode + `invalidate` method is exactly what I am after, yes :) I didn't realize conditional rendering included that mode. With this mode,...

Try a build with this: https://github.com/faceyspacey/webpack-flush-chunks/blob/master/docs/webpack-stats.md#stats-from-a-file

As a dirty workaround, you can delete folders of unwanted packages before installing in your CI/CD. It's not too bad in a simple monorepo where you have client/server/shared code, for...

My npm install or bun install commands very frequently get stuck and never finish for some reason. This blocks the entire deployment pipeline on Dokploy. I've been able to kill...

Thank you @Siumauricio. In my case the server that's building the image is not having any CPU/RAM problem at all, it's just that there is an [issue](https://github.com/oven-sh/bun/issues/4066) in the way...

Sure, that's fair. But the issue still stands that if the image build process hangs for any reason. Dokploy's deployment pipeline gets stuck, and nothing else can be deployed.

It kills the process that's building containers, not the running containers. But it's OS-dependent so it's not ideal. I tried `docker buildx stop` but it didn't work to stop the...

Also worth mentioning that if you use a function prop, it should ideally be async so that` renderer.init()` can be awaited. If not awaited, it will initially wrongly report the...