@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.
Files changed (2) hide show
  1. package/lib/cli.js +6 -2
  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 set <key> <value>')
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) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aifabrix/builder",
3
- "version": "2.6.1",
3
+ "version": "2.6.2",
4
4
  "description": "AI Fabrix Local Fabric & Deployment SDK",
5
5
  "main": "lib/index.js",
6
6
  "bin": {