Skip to content

Commit 02039ce

Browse files
committed
Fix match-graphql.js
1 parent 24186d1 commit 02039ce

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/match-graphql.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ const version = argv[2];
1010

1111
if (pkg.devDependencies.graphql.startsWith(version)) {
1212
// eslint-disable-next-line no-console
13-
console.info(`GraphQL v${version} already installed! Skipping.`);
13+
console.info(`GraphQL v${version} is match! Skipping.`);
14+
return;
1415
}
1516

1617
const npmVersion = version.includes('-') ? version : `^${version}`;

0 commit comments

Comments
 (0)