We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c9de4a commit f439962Copy full SHA for f439962
userTests/vscode/build.sh
@@ -1,22 +1,15 @@
1
-# TODO: building vs code relies on python 3 as well
2
-# although it might be part of node-gyp's postinstall script and could be skipped safely
3
-apt-get update
4
-apt-get install libsecret-1-dev libx11-dev libxkbfile-dev -y
5
-npm i -g yarn --force
6
rm -rf vscode
7
git clone --depth 1 https://github.com/microsoft/vscode.git vscode
8
START=$(pwd)
9
cd $TS
10
-rm ~/.config/yarn/link/typescript
11
-yarn link
+npm link
12
13
cd $START/vscode/build
14
-yarn link typescript
+npm link typescript
15
cd $START/vscode/extensions
16
-yarn add rimraf
17
+npm add rimraf
18
cd $START/vscode
19
20
-yarn
21
-yarn compile
22
-
+npm install
+npm run compile
0 commit comments