@capgo/cli 7.57.0 → 7.58.1

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/README.md CHANGED
@@ -656,7 +656,7 @@ npx @capgo/cli@latest channel currentBundle production com.example.app
656
656
  npx @capgo/cli@latest channel set
657
657
  ```
658
658
 
659
- ⚙️ Configure settings for a channel, such as linking a bundle, setting update strategies (major, minor, metadata, patch, none), or device targeting (iOS, Android, dev, emulator).
659
+ ⚙️ Configure settings for a channel, such as linking a bundle, setting update strategies (major, minor, metadata, patch, none), or device targeting (iOS, Android, dev, prod, emulator, device).
660
660
  One channel must be default.
661
661
 
662
662
  **Example:**
@@ -685,8 +685,12 @@ npx @capgo/cli@latest channel set production com.example.app --bundle 1.0.0 --st
685
685
  | **--disable-auto-update** | <code>string</code> | Block updates by type: major, minor, metadata, patch, or none (allows all) |
686
686
  | **--dev** | <code>boolean</code> | Allow sending update to development devices |
687
687
  | **--no-dev** | <code>boolean</code> | Disable sending update to development devices |
688
+ | **--prod** | <code>boolean</code> | Allow sending update to production devices |
689
+ | **--no-prod** | <code>boolean</code> | Disable sending update to production devices |
688
690
  | **--emulator** | <code>boolean</code> | Allow sending update to emulator devices |
689
691
  | **--no-emulator** | <code>boolean</code> | Disable sending update to emulator devices |
692
+ | **--device** | <code>boolean</code> | Allow sending update to physical devices |
693
+ | **--no-device** | <code>boolean</code> | Disable sending update to physical devices |
690
694
  | **--package-json** | <code>string</code> | Paths to package.json files for monorepos (comma-separated) |
691
695
  | **--ignore-metadata-check** | <code>boolean</code> | Ignore checking node_modules compatibility if present in the bundle |
692
696
  | **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |