Skip to content

Commit 88cef85

Browse files
committed
Add dependencies required for running build script
They were getting pulled from VS Code which doesn't work if you are running a build in a clean repo.
1 parent bdd11f7 commit 88cef85

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"postinstall": "rm -rf node_modules/@types/node",
77
"start": "yarn runner ensure-in-vscode && nodemon --watch ../../../out --verbose ../../../out/vs/server/main.js",
88
"watch": "yarn runner ensure-in-vscode && cd ../../../ && yarn watch",
9-
"build": "yarn runner build",
9+
"build": "yarn --ignore-scripts && yarn runner build",
1010
"package": "yarn runner package",
1111
"binary": "yarn runner binary",
1212
"patch:generate": "yarn runner ensure-in-vscode && cd ../../../ && git diff --staged > ./src/vs/server/scripts/vscode.patch",
@@ -15,13 +15,15 @@
1515
"devDependencies": {
1616
"@coder/nbin": "^1.2.2",
1717
"@types/fs-extra": "^8.0.1",
18+
"@types/node": "^10.12.12",
1819
"@types/pem": "^1.9.5",
1920
"@types/safe-compare": "^1.1.0",
2021
"@types/tar-fs": "^1.16.1",
2122
"@types/tar-stream": "^1.6.1",
2223
"fs-extra": "^8.1.0",
2324
"nodemon": "^1.19.1",
24-
"ts-node": "^8.4.1"
25+
"ts-node": "^8.4.1",
26+
"typescript": "3.6"
2527
},
2628
"resolutions": {
2729
"@types/node": "^10.12.12",

yarn.lock

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2040,6 +2040,11 @@ ts-node@^8.4.1:
20402040
source-map-support "^0.5.6"
20412041
yn "^3.0.0"
20422042

2043+
2044+
version "3.6.4"
2045+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.6.4.tgz#b18752bb3792bc1a0281335f7f6ebf1bbfc5b91d"
2046+
integrity sha512-unoCll1+l+YK4i4F8f22TaNVPRHcD9PA3yCuZ8g5e0qGqlVlJ/8FSateOLLSagn+Yg5+ZwuPkL8LFUc0Jcvksg==
2047+
20432048
undefsafe@^2.0.2:
20442049
version "2.0.2"
20452050
resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.2.tgz#225f6b9e0337663e0d8e7cfd686fc2836ccace76"

0 commit comments

Comments
 (0)