Pierre de la Martinière

Results 243 comments of Pierre de la Martinière

I think this should be solved at `next-transpile-modules` level tbh. It's a little bit hard for the Next.js maintainers to test every plugin out there. I should have a working...

I don't know Nx at all tbh. The good news is the Next.js team is actively working on implementing `next-transpile-modules` natively. So we should hopefully not have to care about...

Fixed in [`[email protected]`](https://github.com/martpie/next-transpile-modules/releases/tag/10.0.0), cheers!

Some discord discussion about context menu (a feature I'm much looking forward to use in Tauri, as it is currently a hard-blocker for my project). > Yeah it’s a feature...

I faced the same issue building Museeks with Electron. I am not sure there is much Tauri can do about it. How I actually solved it is by hiding the...

Of course: Tauri conf: ```diff "windows": [ { "title": "Your app", + "visible": false, "fullscreen": false, "resizable": true } ] ``` Rust side: ```rs #[tauri::command] pub async fn show_main_window(window: tauri::Window)...

Any news on this?

The package `glob-escape` helps developers escaping strings with folder names including characters like `[` `]` `(` `)`, but globby still returns an empty array when running something like: ```js const...

My bad, you have to escape the anti-slash escaping the special caracters as well 🙃 ``` > mm.isMatch('/some path[test]/tada', '/some path\\[test\\]/**/*') true ``` Ref: https://github.com/micromatch/micromatch/issues/77#issuecomment-257610986 But it seems `globby` is...

Hi ! Any news on this ?