File tree Expand file tree Collapse file tree 1 file changed +7
-14
lines changed Expand file tree Collapse file tree 1 file changed +7
-14
lines changed Original file line number Diff line number Diff line change 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
1
rm -rf vscode
7
2
git clone --depth 1 https://github.com/microsoft/vscode.git vscode
8
3
START=$( pwd)
9
4
cd $TS
10
- rm ~ /.config/yarn/link/typescript
11
- yarn link
5
+ npm link
12
6
13
7
cd $START /vscode/build
14
- yarn link typescript
8
+ npm link typescript
15
9
cd $START /vscode/extensions
16
- yarn add rimraf
17
- yarn link typescript
10
+ npm add rimraf
11
+ npm link typescript
18
12
cd $START /vscode
19
- yarn link typescript
20
- yarn
21
- yarn compile
22
-
13
+ npm link typescript
14
+ npm install
15
+ npm run compile
You can’t perform that action at this time.
0 commit comments