Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
mattn committed Apr 28, 2023
2 parents 9210f0a + dbd5c40 commit f984676
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion installer/install-elixir-ls.cmd
@@ -1,7 +1,7 @@
@echo off

setlocal
set VERSION=0.13.0
set VERSION=0.14.3
curl -L -o elixir-ls.zip "https://github.com/elixir-lsp/elixir-ls/releases/download/v%VERSION%/elixir-ls.zip"
call "%~dp0\run_unzip.cmd" elixir-ls.zip
del elixir-ls.zip
Expand Down
2 changes: 1 addition & 1 deletion installer/install-elixir-ls.sh
Expand Up @@ -2,7 +2,7 @@

set -e

version="v0.13.0"
version="v0.14.3"
url="https://github.com/elixir-lsp/elixir-ls/releases/download/$version/elixir-ls.zip"
curl -LO "$url"
unzip elixir-ls.zip
Expand Down
2 changes: 1 addition & 1 deletion installer/install-volar-server.cmd
@@ -1,5 +1,5 @@
@echo off

call "%~dp0\npm_install.cmd" vue-language-server @volar/vue-language-server@~1.2.0
call "%~dp0\npm_install.cmd" vue-language-server @volar/vue-language-server@~1.4.0
ren vue-language-server.cmd volar-server.cmd
call npm install typescript@5.0.2
2 changes: 1 addition & 1 deletion installer/install-volar-server.sh
Expand Up @@ -2,6 +2,6 @@

set -e

"$(dirname "$0")/npm_install.sh" vue-language-server @volar/vue-language-server@~1.2.0
"$(dirname "$0")/npm_install.sh" vue-language-server @volar/vue-language-server@~1.4.0
mv vue-language-server volar-server
npm install typescript@5.0.2

0 comments on commit f984676

Please sign in to comment.