kici-admin 0.1.27 → 0.2.0
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/bin/kici-admin.js +9 -1
- package/package.json +3 -3
- package/sbom.spdx.json +1311 -1859
package/bin/kici-admin.js
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
|
|
2
|
+
// Route the orchestrator CLI's diagnostic logs to stderr so `--json` output
|
|
3
|
+
// (and any other machine-parsed stdout, e.g. direct-DB `source` reads) stays
|
|
4
|
+
// pure data. Set before the dynamic import so it takes effect when the command
|
|
5
|
+
// modules construct their loggers at import time. A statement before a dynamic
|
|
6
|
+
// import() runs first (unlike a hoisted static `import`), so the env is present
|
|
7
|
+
// when the module graph loads.
|
|
8
|
+
process.env.KICI_LOG_STDERR ??= '1';
|
|
9
|
+
|
|
10
|
+
const { runCli } = await import('@kici-dev/orchestrator/cli');
|
|
3
11
|
|
|
4
12
|
runCli();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kici-admin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Administration CLI for a KiCI customer-deployable orchestrator. Manage runs, agents, peers, sources, secrets, event log, and database schema.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ci",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@kici-dev/agent": "0.
|
|
43
|
-
"@kici-dev/orchestrator": "0.
|
|
42
|
+
"@kici-dev/agent": "0.2.0",
|
|
43
|
+
"@kici-dev/orchestrator": "0.2.0"
|
|
44
44
|
},
|
|
45
45
|
"files": [
|
|
46
46
|
"bin",
|