Fix version for insiders publish.

This commit is contained in:
Daniel Rosenwasser 2021-08-24 00:03:35 +00:00 committed by GitHub
parent 5719423aad
commit bca5783234
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
"name": "typescript",
"author": "Microsoft Corp.",
"homepage": "https://www.typescriptlang.org/",
"version": "4.4.1-rc",
"version": "4.4.2-dev",
"license": "Apache-2.0",
"description": "TypeScript is a language for application scale JavaScript development",
"keywords": [

View File

@ -5,7 +5,7 @@ namespace ts {
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
export const version = "4.4.1-rc" as string;
export const version: string = `${versionMajorMinor}.2-dev`;
/**
* Type of objects whose values are all of the same type.