ndonfris / fish-lsp

LSP implementation for the fish shell langauge 🐠
https://fish-lsp.dev
MIT License
97 stars 6 forks source link

Install fails due to --ignore-scripts and --no-progress preinstall options. #53

Closed dsully closed 3 months ago

dsully commented 3 months ago

Describe the bug Yarn 4 / 4.4.1 does not have --ignore-scripts or --no-progress options as used in the preinstall script.

To Reproduce Run yarn install

Expected behavior fish-lsp is built and installed.

Please complete the following information:

ndonfris commented 3 months ago

Sounds like corepack would solve this.

If you've cloned the repo for your installation, I think the following command would fix this.

corepack install yarn@1.22.22
corepack use yarn@1.22.22 
# which yarn
yarn install

Let me know if that helps!

dsully commented 3 months ago

I use volta - so I did it that way. Thanks