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 b821ec7 commit 4a976b0Copy full SHA for 4a976b0
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "code-review-gpt",
3
- "version": "0.0.19",
+ "version": "0.0.20",
4
"description": "Your AI code reviewer",
5
"bin": {
6
"code-review-gpt": "./dist/index.js"
src/args.ts
@@ -14,10 +14,10 @@ export const getYargs = async () => {
14
.command("configure", "Configure the script")
15
.parseSync();
16
17
- if (argv.ci && !argv._[0]) {
+ if (argv.ci) {
18
argv._[0] = "review";
19
console.info(
20
- "Running in CI mode, defaulting to review. Please update the command to: npx code-review-gpt review"
+ "Running in CI mode, defaulting to review."
21
);
22
return argv;
23
}
0 commit comments