Dieter Luypaert

Results 10 comments of Dieter Luypaert

If there is interest I'd love to PR. Manual formatting is such a pain nowadays đŸ˜‚

For those arriving here looking for a rollup solution… ```js { plugins: [ resolve(), commonjs({ ignore: ['pino-pretty'], }), ], } ``` Just make sure to never set pino `prettyPrint` to...

When writing scripts for preset systems this uppercase convention can't always be adhered to. Case in point. I'm writing scripts for Atlassian Bamboo. There is a global variable `bamboo` you...

> Bamboo uses many variables with the bamboo_ prefix but not a single variable. @deryni That depends. When running inline scripts it's a single variable. ${bamboo.myvar} When running linked scripts...

@deryni Ah I see. Thanks for the insight! @koalaman your proposition would work fine for me.

Good to know. For what it's worth, me throwing `HttpErrorResponse` is only in tests since Angular throws them otherwise. So I can easily disable them.

This is only reproducible in Webkit / Safari Technology Preview. The error is thrown within color2k dependency library. According to their issue tracker the bug should be fixed in the...

Fixed in STP Release 184 (Safari 17.4, WebKit 19618.1.7.1.1)

Checking the code, it seems to be intentionally. ``` javascript if (closedPath) { context.fillStrokeShape(this); } else { context.strokeShape(this); } ``` You can do a checkout, modify src/plugins/Path.js:86 and change it...

I don't agree with this choice. You can set fillEnabled to false in your application logic when deemed necessary. Like it is now, there is no way to have a...