Mark ts2.3 as prerelease

This commit is contained in:
Andy Hanson
2017-05-11 07:51:50 -07:00
committed by Andrew Branch
parent cf7a2f3207
commit 86788dc0c1

View File

@@ -23,8 +23,8 @@ export namespace TypeScriptVersion {
}
/** True if a package with the given typescript version should be published as prerelease. */
export function isPrerelease(_version: TypeScriptVersion): boolean {
return false;
export function isPrerelease(version: TypeScriptVersion): boolean {
return version === Latest;
}
/** List of NPM tags that should be changed to point to the latest version. */