Pick up latest markdown language service and clean up server package (#164516)

- Picks up newest markdown language service
- Excludes some files from server publish
- Delete unused file
- Update readme
- Align server version with LS version
This commit is contained in:
Matt Bierner
2022-10-24 15:58:45 -07:00
committed by GitHub
parent eca16a8626
commit 9f5d3eb135
6 changed files with 183 additions and 18 deletions

View File

@@ -1,11 +0,0 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
/**
* @returns New array with all falsy values removed. The original array IS NOT modified.
*/
export function coalesce<T>(array: ReadonlyArray<T | undefined | null>): T[] {
return <T[]>array.filter(e => !!e);
}