@solidactions/cli 0.2.6 → 0.2.7
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.
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -18,11 +18,13 @@ const schedule_set_1 = require("./commands/schedule-set");
|
|
|
18
18
|
const schedule_list_1 = require("./commands/schedule-list");
|
|
19
19
|
const schedule_delete_1 = require("./commands/schedule-delete");
|
|
20
20
|
const webhooks_1 = require("./commands/webhooks");
|
|
21
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
22
|
+
const pkg = require('../package.json');
|
|
21
23
|
const program = new commander_1.Command();
|
|
22
24
|
program
|
|
23
25
|
.name('solidactions')
|
|
24
26
|
.description('SolidActions CLI - Deploy and manage workflow automation')
|
|
25
|
-
.version(
|
|
27
|
+
.version(pkg.version);
|
|
26
28
|
// =============================================================================
|
|
27
29
|
// Authentication & Configuration
|
|
28
30
|
// =============================================================================
|