Fixed ao's version mismatch problem
This commit is contained in:
parent
7e53542f9d
commit
a4e6483578
|
|
@ -1,6 +1,7 @@
|
|||
#!/usr/bin/env node
|
||||
|
||||
import { Command } from "commander";
|
||||
import packageJson from "../package.json" with { type: "json" };
|
||||
import { registerInit } from "./commands/init.js";
|
||||
import { registerStatus } from "./commands/status.js";
|
||||
import { registerSpawn, registerBatchSpawn } from "./commands/spawn.js";
|
||||
|
|
@ -23,7 +24,7 @@ const program = new Command();
|
|||
program
|
||||
.name("ao")
|
||||
.description("Agent Orchestrator — manage parallel AI coding agents")
|
||||
.version("0.1.0");
|
||||
.version(packageJson.version);
|
||||
|
||||
registerInit(program);
|
||||
registerStart(program);
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
{
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext",
|
||||
"outDir": "dist",
|
||||
"rootDir": "src"
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue