@companyhelm/runner 0.0.23 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,19 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.registerCommands = registerCommands;
|
|
4
|
-
const common_js_1 = require("./runner/common.js");
|
|
5
4
|
const logs_js_1 = require("./logs.js");
|
|
6
5
|
const start_js_1 = require("./runner/start.js");
|
|
7
6
|
const stop_js_1 = require("./runner/stop.js");
|
|
8
|
-
const start_js_2 = require("./runner/start.js");
|
|
9
7
|
const shell_js_1 = require("./shell.js");
|
|
10
8
|
const register_sdk_commands_js_1 = require("./sdk/register-sdk-commands.js");
|
|
11
9
|
const status_js_1 = require("./status.js");
|
|
12
10
|
const register_thread_commands_js_1 = require("./thread/register-thread-commands.js");
|
|
13
11
|
function registerCommands(program) {
|
|
14
|
-
(0, common_js_1.addRunnerStartOptions)(program
|
|
15
|
-
.command("companyhelm-runner")
|
|
16
|
-
.description("Alias for starting the local CompanyHelm runner.")).action(start_js_2.runRunnerStartCommand);
|
|
17
12
|
(0, start_js_1.registerRunnerStartCommand)(program);
|
|
18
13
|
(0, stop_js_1.registerRunnerStopCommand)(program);
|
|
19
14
|
(0, status_js_1.registerStatusCommand)(program);
|