Skip to content

Commit bf12bdf

Browse files
committed
feat(cli): add update checks
1 parent a3ca3d0 commit bf12bdf

File tree

8 files changed

+512
-1269
lines changed

8 files changed

+512
-1269
lines changed

genkit-tools/cli/package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,12 @@
3535
"commander": "^11.1.0",
3636
"extract-zip": "^2.0.1",
3737
"get-port": "5.1.1",
38-
"inquirer": "^8.2.0",
3938
"open": "^6.3.0",
4039
"ora": "^5.4.1",
4140
"semver": "^7.7.2"
4241
},
4342
"devDependencies": {
4443
"@jest/globals": "^29.7.0",
45-
"@types/inquirer": "^8.1.3",
4644
"@types/jest": "^29.5.12",
4745
"@types/node": "^20.11.19",
4846
"@types/semver": "^7.7.0",

genkit-tools/cli/src/cli.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import {
3737
import { start } from './commands/start';
3838
import { uiStart } from './commands/ui-start';
3939
import { uiStop } from './commands/ui-stop';
40-
import { showUpdateNotification, update } from './commands/update';
40+
import { showUpdateNotification } from './utils/updates';
4141
import { version } from './utils/version';
4242

4343
/**
@@ -57,7 +57,6 @@ const commands: Command[] = [
5757
config,
5858
start,
5959
mcp,
60-
update,
6160
];
6261

6362
/** Main entry point for CLI. */

0 commit comments

Comments
 (0)