We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c543bc commit 45bc017Copy full SHA for 45bc017
vscode-extension/src/commands/copyOperation.ts
@@ -15,12 +15,12 @@ export function handleCopyOperation(context: RelayExtensionContext): void {
15
16
if (binaryVersion) {
17
const isSupportedCompilerVersion =
18
- semver.satisfies(binaryVersion, '>17.0') ||
+ semver.satisfies(binaryVersion, '>18.0') ||
19
semver.prerelease(binaryVersion) != null;
20
21
if (!isSupportedCompilerVersion) {
22
window.showWarningMessage(
23
- 'Unsupported relay-compiler version. Requires >17.0.0',
+ 'Unsupported relay-compiler version. Requires >18.0.0',
24
);
25
return;
26
}
0 commit comments