Kyle Kirbatski

Results 42 comments of Kyle Kirbatski

Any update on this?

Something to do with USB (duh) `libusb_get_device_list` * thread #2, queue = 'com.apple.main-thread', stop reason = signal SIGABRT * frame #0: 0x00007fff6275c2c6 libsystem_kernel.dylib`__pthread_kill + 10 frame #1: 0x00007fff62817bf1 libsystem_pthread.dylib`pthread_kill +...

As a quick work around, I made this fallback resolver: [@kkirbatski/parcel-resolver-require-resolve](https://github.com/kkirby/parcel-resolver-require-resolve) ```typescript import { Resolver } from '@parcel/plugin'; export default new Resolver({ async resolve({ filePath }) { try { return...

@devongovett > FWIW, I looked into implementing this not long ago, using the library linked above. I couldn't figure out where it should go in the resolution algorithm though. The...

I don't know when the resolver plugin spec changed, but at some point the resolver passed a `filePath` but now it passes as `specifier`. So if you had issues with...

Preliminary results show that changing the line `if (node.exportClause) {` to `if (node.exportClause && node.exportClause.elements) {` seems to work as expected. It's correctly exporting all `export * as Module from...

I am getting this too on my iPhone 12. If I scroll, and the scroll has inertia, then I put my finger down, the view continues to scroll. Even if...

I actually haven't seen this bug in a few months. Or I've just gotten used to it. Not sure which.

Super strange, I haven't seen this issue in a LONG time. I wonder what the contributing factor could be.