From bdb230ba8d56d70497a03b49578e3ae4333f0349 Mon Sep 17 00:00:00 2001 From: Asher Date: Fri, 7 May 2021 13:25:23 -0500 Subject: [PATCH] Add pty host to build --- lib/vscode/coder.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/vscode/coder.js b/lib/vscode/coder.js index cbc448059..d3ed51332 100644 --- a/lib/vscode/coder.js +++ b/lib/vscode/coder.js @@ -14,11 +14,14 @@ const vscodeEntryPoints = _.flatten([ buildfile.workerExtensionHost, buildfile.workerNotebook, buildfile.keyboardMaps, + // See ./src/vs/workbench/buildfile.desktop.js buildfile.entrypoint("vs/platform/files/node/watcher/unix/watcherApp"), buildfile.entrypoint("vs/platform/files/node/watcher/nsfw/watcherApp"), + buildfile.entrypoint('vs/platform/terminal/node/ptyHostMain'), buildfile.entrypoint("vs/workbench/services/extensions/node/extensionHostProcess"), ]); +// See ./build/gulpfile.vscode.js const vscodeResources = [ "out-build/vs/server/fork.js", "!out-build/vs/server/doc/**",