There was an error while loading. Please reload this page.
1 parent 0f85cf6 commit 9c4e31dCopy full SHA for 9c4e31d
scripts/release-client.sh
@@ -4,6 +4,8 @@ set -euo pipefail
4
5
version=$(cat vscode-client/package.json | jq -r .version)
6
7
-yarn && yarn run check:bail
+yarn run clean
8
+yarn install
9
+yarn run check:bail
10
11
cd vscode-client && vsce publish ${version}
scripts/release-server.sh
@@ -5,7 +5,9 @@ set -euo pipefail
version=$(cat server/package.json | jq -r .version)
tag="server-${version}"
12
git tag -a "${tag}" -m "Release ${version} of the bash-language-server package"
13
git push origin "${tag}"
0 commit comments