thesmartwon

Results 29 comments of thesmartwon

Ran into this again today. I'd love to eliminate one more tiny HTTP request! FWIW, `tsc` and `babel` by default resort to inlining their helpers and require manual configuration to...

Looks like currently only numbers and numeric types are supported. I'd also like composite keys instead of `idColumns.join("/")`.

PostCSS polyfill tracking issue: https://github.com/csstools/postcss-plugins/issues/1666

I just wrote a janky polyfill. Doesn't support argument or return types, nor functions calling functions (let alone with preserved context). Oh, and when it fails, it does so silently....

Simply exposing the same options [LightningCSS does](https://lightningcss.dev/bundling.html) should be sufficient.

I'm not sure why each worker thread needs to register a file. Only one thread should ever do that, since `FileSystemFileHandle` is exclusive in OPFS ([except in Chrome with the...

Relevant commit is 00ed1c3066b8d39d69baec34a5e0fbd2dbef6364 . Don't know if you're still around, but do you have any pointers @ankoh 😅 ? My use case is accessing the same persisted duckdb instance...

> Right now I cannot decide between using one shared instance of the multithreaded coi API or one shared writer of the eh API with many readers (which requires https://github.com/duckdb/duckdb-wasm/pull/1962)....

Removing the lines I referenced above from `bindings_base.ts` fixes the crash. However, I'm not quite sure why the original author wrote those lines, and he hasn't responded.