We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f67c0e commit 90899f0Copy full SHA for 90899f0
ci/build/build-release.sh
@@ -119,15 +119,21 @@ create_shrinkwraps() {
119
120
# We first generate the shrinkwrap file for code-server itself - which is the
121
# current directory.
122
+ cp package-lock.json package-lock.json.temp
123
npm shrinkwrap
124
+ mv package-lock.json.temp package-lock.json
125
126
# Then the shrinkwrap files for the bundled VS Code.
127
pushd "$VSCODE_SRC_PATH/remote/"
128
129
130
131
popd
132
133
pushd "$VSCODE_SRC_PATH/extensions/"
134
135
136
137
138
}
139
0 commit comments