WANG YEFU

Results 7 comments of WANG YEFU

After some digging, the latest workable version is 1.10.0. The issue was introduced in 1.11.0 release. It seems to be caused by circular dependency https://stackoverflow.com/questions/75733102/typescript-javascript-circular-dependency-class-extends-value-undefined-is-not. In 1.11.0 release, a lot...

The simplest way of reproducing the bug is to add latest yaml-language-server to a newly created project(using npm init) and import JSONDocument. ``` // in index.ts, just import JSONDocument without...

Instead of using `pipeTo` API, I decide to go with reader API with the following code because it gives me a chance to handle EOF. But it seems `EOF` is...

I can still reproduce it with 1.44.1. I'm using wsl btw.

Unfortunately, this issue still exists in deno 2 ``` deno 2.0.0 (stable, release, x86_64-unknown-linux-gnu) v8 12.9.202.13-rusty typescript 5.6.2 ``` with a slightly different error message: ``` error: Uncaught (in promise)...

In our case, vcpkg is used to compile highway as a dependency. It is non trivial to pass `-DHWY_DISABLED_TARGETS=HWY_ALL_SVE` to vcpkg. So, we end up using Clang 15/14.

@rujialiu I think the problem here is that you are linking with an old version of SQLite that doesn't provide sqlite3_vtab_in symbols. The symbols are required because they are not...