From cbcad39a4f0f58a6e8394ac2076cf1890c77c0d5 Mon Sep 17 00:00:00 2001 From: Asher Date: Thu, 1 Apr 2021 10:56:25 -0500 Subject: [PATCH] Remove ipc.d.ts from final build Now that the plugin API has its own separate types this is no longer necessary. --- ci/build/build-release.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ci/build/build-release.sh b/ci/build/build-release.sh index c3136712..ffad5538 100755 --- a/ci/build/build-release.sh +++ b/ci/build/build-release.sh @@ -25,12 +25,6 @@ main() { rsync README.md "$RELEASE_PATH" rsync LICENSE.txt "$RELEASE_PATH" rsync ./lib/vscode/ThirdPartyNotices.txt "$RELEASE_PATH" - - # code-server exports types which can be imported and used by plugins. Those - # types import ipc.d.ts but it isn't included in the final vscode build so - # we'll copy it ourselves here. - mkdir -p "$RELEASE_PATH/lib/vscode/src/vs/server" - rsync ./lib/vscode/src/vs/server/ipc.d.ts "$RELEASE_PATH/lib/vscode/src/vs/server" } bundle_code_server() {