Ben Asher

Results 142 comments of Ben Asher

It was just the latest available version at the time

I would probably start with a plugin, since you'll probably want to use some kind of gem to help with the S3 legwork. https://github.com/CocoaPods/cocoapods-plugins

One interesting note: still debugging this one, but there is a similar flavor of bug where static functions on the class don't get transformed this way. For example: ```typescript @MarkClass("example")...

I suppose swc could apply a similar transformation and also transform `new Example()` to `new this()`. Apologies; I haven't fully debugged this part yet, but I saw this issue was...

Ah okay so what tsc does is apply the decoration to Example and update Example_1 to point to the decorated class, to then calling `Example.create()` works as expected.

Performance improvements were made to isDeepStrictEqual as of node 18, so it would be great to see this updated https://github.com/nodejs/node/commits/main/lib/internal/util/comparisons.js

The idea is that once this ships, users having trouble with the default export can switch to the name export instead.

Good questions! For Ajv2019 (and Ajv2020), that was just for consistency. I don't use them, but without much context, it felt weird to not do it for the others. I'm...