Skip to content

Commit

Permalink
Adjust npm package postinstall to install extension dependencies (cod…
Browse files Browse the repository at this point in the history
  • Loading branch information
nhooyr authored Oct 9, 2020
1 parent 1e4e72a commit 64a6a46
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ci/build/npm-postinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@ vscode_yarn() {
yarn --production --frozen-lockfile
cd extensions
yarn --production --frozen-lockfile
for ext in */; do
ext="${ext%/}"
echo "extensions/$ext: installing dependencies"
cd "$ext"
yarn --production --frozen-lockfile
cd "$OLDPWD"
done
}

main "$@"

0 comments on commit 64a6a46

Please sign in to comment.