@fractary/faber-cli 1.5.7 → 1.5.8
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.d.ts.map +1 -1
- package/dist/index.js +4 -1
- package/package.json +2 -1
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA;;;;;GAKG;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA;;;;;GAKG;AAMH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAqBpC;;GAEG;AACH,wBAAgB,cAAc,IAAI,OAAO,CA0KxC"}
|
package/dist/index.js
CHANGED
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
* Binary: fractary-faber
|
|
6
6
|
* Entry point for the FABER command-line interface
|
|
7
7
|
*/
|
|
8
|
+
// Load .env file from current working directory before anything else
|
|
9
|
+
import dotenv from 'dotenv';
|
|
10
|
+
dotenv.config();
|
|
8
11
|
import { Command } from 'commander';
|
|
9
12
|
import chalk from 'chalk';
|
|
10
13
|
import { createRunCommand, createStatusCommand, createResumeCommand, createPauseCommand, createRecoverCommand, createCleanupCommand } from './commands/workflow/index.js';
|
|
@@ -21,7 +24,7 @@ if (process.stdout.isTTY) {
|
|
|
21
24
|
process.stdout._handle?.setBlocking?.(true);
|
|
22
25
|
}
|
|
23
26
|
console.error('[DEBUG] CLI starting, args:', process.argv);
|
|
24
|
-
const version = '1.5.
|
|
27
|
+
const version = '1.5.8';
|
|
25
28
|
/**
|
|
26
29
|
* Create and configure the main CLI program
|
|
27
30
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fractary/faber-cli",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.8",
|
|
4
4
|
"description": "FABER CLI - Command-line interface for FABER development toolkit",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"ajv": "^8.12.0",
|
|
42
42
|
"chalk": "^5.0.0",
|
|
43
43
|
"commander": "^12.0.0",
|
|
44
|
+
"dotenv": "^16.4.5",
|
|
44
45
|
"js-yaml": "^4.1.0"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|