Thomas Chiantia
Thomas Chiantia
@Vizonex Actually - i see what is going on. The build scripts do not run `npm install` so on a fresh vendor directory, the `prepare` script of the `package.json` will...
running `npm install --ignore-scripts` will work around the error. my solution ends up looking something like this: ```ps if ($llhttp) { Write-Output "Generating llhttp scripts..." if (Test-Path -Path "vendor/llhttp/lib"){ Write-Output...
Thanks!
Also - I am also using the native build of llhttp. So i also need to run the make file. Copying your pattern for the lib build. i also do...
i have this issue with my repo also. It seems some projects, the example files will emit lint errors, while other projects will not emit lint errors. [here](https://github.com/mrcjkb/rustaceanvim/issues/562) is more...
> Had the same issue. The solution is to enable experimental diagnostics mode. My neovim specific lsp config: > > ``` > -- snip > ["rust_analyzer"] = function() > require...