Skip to content

Commit

Permalink
Dependency: vscode-exthost -> 1.33.5 (#1226)
Browse files Browse the repository at this point in the history
This brings in [email protected], in preparation for wiring up the terminal service APIs

* Dependency: vscode-exthost -> 1.33.5

* Install node-gyp

* Move node-gyp install to before installing node deps

* Add installing node-gyp to build steps
  • Loading branch information
bryphe authored Jan 20, 2020
1 parent a95ae2e commit 983160b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .ci/js-build-steps.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Cross-platform set of build steps for building esy projects

steps:
- script: npm install -g node-gyp
displayName: 'js deps: install node-gyp'
- script: node install-node-deps.js --prod
displayName: 'js deps: npm install --prod'
1 change: 1 addition & 0 deletions docs/docs/for-developers/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ esy build
### Install node dependencies

```sh
npm install -g node-gyp
node install-node-deps.js
```

Expand Down
2 changes: 1 addition & 1 deletion node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dependencies": {
"fs-extra": "^8.1.0",
"sudo-prompt": "^9.0.0",
"vscode-exthost": "1.33.4",
"vscode-exthost": "1.33.5",
"yauzl": "^2.5.1"
},
"jest": {
Expand Down
21 changes: 17 additions & 4 deletions node/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,18 @@ jsonfile@^4.0.0:
optionalDependencies:
graceful-fs "^4.1.6"

[email protected]:
version "2.12.1"
resolved "https://registry.yarnpkg.com/nan/-/nan-2.12.1.tgz#7b1aa193e9aa86057e3c7bbd0ac448e770925552"
integrity sha512-JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw==

[email protected]:
version "0.8.1"
resolved "https://registry.yarnpkg.com/node-pty/-/node-pty-0.8.1.tgz#94b457bec013e7a09b8d9141f63b0787fa25c23f"
integrity sha512-j+/g0Q5dR+vkELclpJpz32HcS3O/3EdPSGPvDXJZVJQLCvgG0toEbfmymxAEyQyZEpaoKHAcoL+PvKM+4N9nlw==
dependencies:
nan "2.12.1"

pend@~1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50"
Expand All @@ -67,13 +79,14 @@ universalify@^0.1.0:
resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==

[email protected].4:
version "1.33.4"
resolved "https://registry.yarnpkg.com/vscode-exthost/-/vscode-exthost-1.33.4.tgz#f076ef6f753b46f1d3ea6c3cb121ee5eb89f9efd"
integrity sha512-V6hikfsZTgwqNITMpwoYwxkoJq99UmX1xZm0AquxHcKKfcksGql5k1dg0jQe7SyLNp0LEW9WhZUIbZIRwSNCkA==
[email protected].5:
version "1.33.5"
resolved "https://registry.yarnpkg.com/vscode-exthost/-/vscode-exthost-1.33.5.tgz#ac7ef28d34d82f30f067064b129e56c144a4e63d"
integrity sha512-9snPG1ZxytO0HFmkqItRt3W6SGDhZ1JIUsIYXYQ2eKu5jx/NSow3/SYJJhFzsRqtLfbx9gL/6AWh50Vz62llog==
dependencies:
graceful-fs "4.1.11"
iconv-lite "0.4.23"
node-pty "0.8.1"
semver "^5.5.0"
vscode-jsonrpc "4.0.0"

Expand Down

0 comments on commit 983160b

Please sign in to comment.