We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13ab842 commit d424ff2Copy full SHA for d424ff2
1 file changed
build/npm/postinstall.js
@@ -33,9 +33,10 @@ function yarnInstall(location, opts) {
33
34
yarnInstall('extensions'); // node modules shared by all extensions
35
36
-yarnInstall('remote'); // node modules used by vscode server
37
-
38
-yarnInstall('remote/web'); // node modules used by vscode web
+if (!(process.platform === 'win32' && process.arch === 'arm64')) {
+ yarnInstall('remote'); // node modules used by vscode server
+ yarnInstall('remote/web'); // node modules used by vscode web
39
+}
40
41
const allExtensionFolders = fs.readdirSync('extensions');
42
const extensions = allExtensionFolders.filter(e => {
0 commit comments