Skip to content

Commit

Permalink
chore(typescript-estree): remove beta and rc from `SUPPORTED_PRER…
Browse files Browse the repository at this point in the history
…ELEASE_RANGES`
  • Loading branch information
sosukesuzuki committed May 26, 2022
1 parent 3cca2cf commit 0fa1585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/typescript-estree/src/parser.ts
Expand Up @@ -35,7 +35,7 @@ const SUPPORTED_TYPESCRIPT_VERSIONS = '>=3.3.1 <4.8.0';
* The semver package will ignore prerelease ranges, and we don't want to explicitly document every one
* List them all separately here, so we can automatically create the full string
*/
const SUPPORTED_PRERELEASE_RANGES: string[] = ['4.7.0-beta', '4.7.1-rc'];
const SUPPORTED_PRERELEASE_RANGES: string[] = [];
const ACTIVE_TYPESCRIPT_VERSION = ts.version;
const isRunningSupportedTypeScriptVersion = semver.satisfies(
ACTIVE_TYPESCRIPT_VERSION,
Expand Down

0 comments on commit 0fa1585

Please sign in to comment.