Rudolf Byker
Rudolf Byker
Here's a workaround that uses monkey-patching. I think this is easier than keeping forks around: ``` /** * Workaround for https://github.com/jsdom/jsdom/issues/2005 */ export function disableCssProcessing() { const HTMLStyleElementImpl = require("jsdom/lib/jsdom/living/nodes/HTMLStyleElement-impl").implementation;...
Here is my workaround: ``` /** * This is similar to `component(:is="tag")`, except that it also works in SSR. * * See: * - https://discord.com/channels/473401852243869706/1152225826910244955/1152225826910244955 * - https://stackblitz.com/edit/github-gs1ptn * -...
I made a minimal reproduction repository for the problem: https://github.com/rudolfbyker/vue-pug-indent-reproduction and a new PR: https://github.com/vuejs/core/pull/7723
The simplest sane workaround I can think of is to implement `ClipboardEvent` like this: ```ts class MockClipboardEvent extends Event implements ClipboardEvent { clipboardData: DataTransfer | null = null; } ```...
I understand that `wg-meshconf` should not support all possible configurations, but I think my specific use case is very common, and easy to achieve without any modifications to the database...
https://github.com/xlwings/xlwings/blob/44444923728aecd53d353c509ba753399fa96dfd/xlwings/_xlwindows.py#L422C2-L422C70 Regarding this code: I don't think that setting the time zone to UTC and removing the time zone data is the same thing! UTC is not special, it's just...
> The UTC hack is required by how COM works, it's not converting it to UTC. OK, I did not realize that this was a hack. > See also: https://github.com/xlwings/xlwings/blob/main/tests/test_conversion.py#L68-L73...
OK, so I ran into a few problems here... Please bear with me. > I added instructions on how to run the UDF tests: https://github.com/xlwings/xlwings/blob/main/DEVELOPER_GUIDE.md#tests The only relevant thing I...
I'm on a fresh Windows 10 installation, I followed the steps at https://github.com/xlwings/xlwings/blob/main/DEVELOPER_GUIDE.md#tests exactly (even with Rust), and I had to do ~two~ one extra thing which are not specified...
As I'm writing the unit tests, I realized that I gave a bogus example above of what I'm trying to do! So let me clarify the use case: ### 1....