Skip to content

Commit 128a22b

Browse files
committed
Add use-comms function to top level index.ts
1 parent d5ce4b2 commit 128a22b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/cli/index.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import { version } from "./package.json"
1010
import { applyEnvironmentOptionHooks } from "./utils/globalOptionsHook"
1111
import { cloudwatch } from "./commands/cloudwatch"
1212
import { importVpn } from "./commands/importVpn"
13+
import { userComms } from "./commands/user-comms"
1314

1415
process.on("unhandledRejection", (reason) => {
1516
console.error(reason)
@@ -39,8 +40,9 @@ const cli = new Command()
3940
.addCommand(messageProcessing())
4041
.addCommand(conductor())
4142
.addCommand(cloudwatch())
43+
.addCommand(userComms())
4244

43-
const skipCommands = ["wiki", "fetch-image", "dev-sgs", "cloudwatch", "import-vpn-profiles"]
45+
const skipCommands = ["wiki", "fetch-image", "dev-sgs", "cloudwatch", "import-vpn-profiles", "user-comms"]
4446
if (!skipCommands.some((c) => process.argv.includes(c))) {
4547
applyEnvironmentOptionHooks(cli)
4648
}

0 commit comments

Comments
 (0)