Skip to content

Commit 45bc017

Browse files
Update compiler version check
1 parent 2c543bc commit 45bc017

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vscode-extension/src/commands/copyOperation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ export function handleCopyOperation(context: RelayExtensionContext): void {
1515

1616
if (binaryVersion) {
1717
const isSupportedCompilerVersion =
18-
semver.satisfies(binaryVersion, '>17.0') ||
18+
semver.satisfies(binaryVersion, '>18.0') ||
1919
semver.prerelease(binaryVersion) != null;
2020

2121
if (!isSupportedCompilerVersion) {
2222
window.showWarningMessage(
23-
'Unsupported relay-compiler version. Requires >17.0.0',
23+
'Unsupported relay-compiler version. Requires >18.0.0',
2424
);
2525
return;
2626
}

0 commit comments

Comments
 (0)