Kamil Skalski
Kamil Skalski
With version ``1.9.0`` I get ``` [vite-plugin-vue2] D:\rep\Kogut\src\Kuropatwa\vue\App.vue has no corresponding SFC entry in the cache. This is a vite-plugin-vue2 internal error, please open an issue. file: D:/rep/Kogut/src/Kuropatwa/vue/App.scss?vue&type=style&index=0&from=D:\rep\Kogut\src\Kuropatwa\vue\App.vue&src&lang.scss error during...
With version 1.8.2 (also 1.9.0) I got this kind of regression too: ``` [vite-plugin-vue2] D:\rep\path\component.vue has no corresponding SFC entry in the cache. This is a vite-plugin-vue2 internal error, please...
Ok, seems like this error happens only when I remove ``` external: ['@electron-toolkit/utils'] ``` line in the config. I was building without this external declaration, because I wasn't sure for...
Well, adding toolkit/utils to my larger project didn't fix the issue, but it does make a difference in ``electron-vite-boilerplate`` project. I created reproduction in https://github.com/kskalski/electron-vite-boilerplate Note that it uses the...
I suppose something like this could be added to ``GrpcCallOptions`` ```ts /** * This option can be provided when calling a client method. * The MetadataOptions are used for creating...
This PR https://github.com/timostamm/protobuf-ts/pull/261 should allow the options to be passed by user
``grpcweb-transport`` doesn't use ``grpc-js``, so it doesn't consume its ``MetadataOptions``. One could imagine some of the functionalities from those options to be implemented in ``grpcweb-transport``, but that is an independent...
Indeed, doing ``` var parms = DotNetUtilities.ToRSAParameters(ko.Private as RsaPrivateCrtKeyParameters); var rsa = RSA.Create(); rsa.ImportParameters(parms); return rsa; ``` instead of ``` DotNetUtilities.ToRSA(ko.Private as RsaPrivateCrtKeyParameters) ``` fixes the issue on Linux, I...
just note, that there is a problem on Windows with the above code (https://github.com/dotnet/runtime/issues/23749), right now I need to use this: ``` if (System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(System.Runtime.InteropServices.OSPlatform.Windows)) return DotNetUtilities.ToRSA(ko.Private as RsaPrivateCrtKeyParameters); var parms...
I'm seeing this error in my application at Electron main process, just switched to Electron v11.0.0-beta.19, which runs on NodeJS 12.18.3, but it doesn't help. Interestingly I got into the...