未验证 提交 64a6a460 编写于 作者: A Anmol Sethi 提交者: GitHub

Adjust npm package postinstall to install extension dependencies (#2180)

Closes #1961
上级 1e4e72aa
......@@ -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 "$@"
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册