Add missing types to release

code-server exports its types but they weren't complete since it imports
ipc.d.ts and that wasn't being included.
This commit is contained in:
Asher 2020-07-28 15:06:10 -05:00
parent 486652abaf
commit 1c8eede1aa
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A
1 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,10 @@ main() {
rsync README.md "$RELEASE_PATH"
rsync LICENSE.txt "$RELEASE_PATH"
rsync ./lib/vscode/ThirdPartyNotices.txt "$RELEASE_PATH"
# Keep these types since code-server's exported types use them.
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() {