@celilo/cli 0.3.15 → 0.3.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@celilo/cli",
3
- "version": "0.3.15",
3
+ "version": "0.3.16",
4
4
  "description": "Celilo — home lab orchestration CLI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -506,8 +506,14 @@ export const COMMANDS: CommandDef[] = [
506
506
  },
507
507
  {
508
508
  name: 'publish',
509
- description: 'Build and publish a module to the registry',
510
- args: [{ name: 'module-dir', description: 'Module directory', completion: 'directories' }],
509
+ description: 'Build and publish one or more modules to the registry',
510
+ args: [
511
+ {
512
+ name: 'module-dir...',
513
+ description: 'One or more module directories (shell-glob ./modules/* works)',
514
+ completion: 'directories',
515
+ },
516
+ ],
511
517
  flags: [
512
518
  { name: 'token', description: 'Publish token', takesValue: true },
513
519
  { name: 'registry', description: 'Registry URL', takesValue: true },
@@ -522,6 +528,11 @@ export const COMMANDS: CommandDef[] = [
522
528
  description: 'Bypass the clean-working-tree check (emergency publish)',
523
529
  takesValue: false,
524
530
  },
531
+ {
532
+ name: 'allow-stale',
533
+ description: 'Skip the manifest-vs-src stale-check (use sparingly)',
534
+ takesValue: false,
535
+ },
525
536
  ],
526
537
  },
527
538
  ],