@aifabrix/builder 2.6.1 → 2.6.2
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/lib/cli.js +6 -2
- package/package.json +1 -1
package/lib/cli.js
CHANGED
|
@@ -437,8 +437,12 @@ function setupCommands(program) {
|
|
|
437
437
|
});
|
|
438
438
|
|
|
439
439
|
// Secrets management commands
|
|
440
|
-
program
|
|
441
|
-
.command('secrets
|
|
440
|
+
const secretsCmd = program
|
|
441
|
+
.command('secrets')
|
|
442
|
+
.description('Manage secrets in secrets files');
|
|
443
|
+
|
|
444
|
+
secretsCmd
|
|
445
|
+
.command('set <key> <value>')
|
|
442
446
|
.description('Set a secret value in secrets file')
|
|
443
447
|
.option('--shared', 'Save to general secrets file (from config.yaml aifabrix-secrets) instead of user secrets')
|
|
444
448
|
.action(async(key, value, options) => {
|