We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f779d85 commit 7579dbbCopy full SHA for 7579dbb
ci/build/npm-postinstall.sh
@@ -92,7 +92,7 @@ symlink_asar() {
92
vscode_yarn() {
93
echo 'Installing Code dependencies...'
94
cd lib/vscode
95
- yarn --production --frozen-lockfile
+ yarn --production --frozen-lockfile --no-default-rc
96
97
symlink_asar
98
ci/dev/postinstall.sh
@@ -7,6 +7,9 @@ install-deps() {
7
if [[ ${CI-} ]]; then
8
args+=(--frozen-lockfile)
9
fi
10
+ if [[ "$1" == "lib/vscode"]]; then
11
+ args+=(--no-default-rc)
12
+ fi
13
# If there is no package.json then yarn will look upward and end up installing
14
# from the root resulting in an infinite loop (this can happen if you have not
15
# checked out the submodule yet for example).
0 commit comments