Marko Antolić

Results 31 comments of Marko Antolić

> What if I **need** to recreate editor's instance on some event? Not sure what would be the use case for it, but I'm guessing it could be done like...

> Is it possible to generate camelCase keys in interfaces ? Are keys in Swagger JSON in some other case? I guess this library just pulls what's defined there and...

Not sure if this was already addressed to a certain extent, but I've ran into some of these examples in docs here https://redwoodjs.com/docs/how-to/role-based-access-control-rbac#how-to-protect-a-route. This isn't listed in `` component docs,...

> I wonder if this is perhaps Windows related? Just to confirm that it's not just your machine, I've cloned the repo and ran it and got the same issue....

> > @wadehammes the [matcher config](https://nextjs.org/docs/advanced-features/middleware#matcher) allows filtering to specific paths so that it doesn't run for `_next` or other static assets. > > @ijjk If we wanted to restore...

This error says that it cannot execute that particular file because apparently it doesn't exist. The problem here is that `app.asar` is a special archive type and spawn cannot execute...

I've managed to resolve my issue by kinda manually pointing to the appropriate binary file. ```ts const getSevenZipBinPath = () => { let sevenZipModuleRootPath = ""; if (App.isDevelopmentMode()) { //...

It seems you are potentially using this code in browser/renderer where `__dirname` doesn't exist. `__dirname` is a Node.js API and it's not available in browsers. I don't have full code...

In case someone else lands here with this issue while migrating from some older version to this or from lack of documentation on this particular part. Code I added here...

> And this is why we've switched most of our project to alternative DI libraries. What are those alternatives? I'm looking for a good DI library for JS/TS, but most...