@capgo/cli 8.47.0 → 8.48.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/README.md +7 -1
- package/dist/index.js +639 -639
- package/dist/package.json +3 -2
- package/dist/src/build/onboarding/android/gcp-api.d.ts +2 -1
- package/dist/src/bundle/upload.d.ts +2 -1
- package/dist/src/channel/set.d.ts +14 -0
- package/dist/src/mcp/tool-schemas.d.ts +2 -0
- package/dist/src/schemas/bundle.d.ts +1 -0
- package/dist/src/schemas/channel.d.ts +1 -0
- package/dist/src/schemas/sdk.d.ts +3 -0
- package/dist/src/sdk.js +336 -336
- package/package.json +3 -2
- package/skills/release-management/SKILL.md +3 -1
package/README.md
CHANGED
|
@@ -86,6 +86,10 @@ npx @capgo/cli@latest bundle upload com.example.app \
|
|
|
86
86
|
Add `--fail-on-incompatible` when CI must stop instead of uploading a bundle that
|
|
87
87
|
cannot safely update the current native build.
|
|
88
88
|
|
|
89
|
+
Add `--accept-incompatible` when the mismatch is intentional (for example your
|
|
90
|
+
JavaScript already checks that a native plugin exists before using it). The
|
|
91
|
+
upload still warns, but Capgo will not send the crash-warning email.
|
|
92
|
+
|
|
89
93
|
## Documentation
|
|
90
94
|
|
|
91
95
|
The most complete [documentation is here](https://capgo.app/docs/).
|
|
@@ -419,7 +423,8 @@ npx @capgo/cli@latest bundle upload com.example.app --path ./dist --channel prod
|
|
|
419
423
|
| **--min-update-version** | <code>string</code> | Minimal version required to update to this version. Used only if the disable auto update is set to metadata in channel |
|
|
420
424
|
| **--auto-min-update-version** | <code>boolean</code> | Set the min update version based on native packages |
|
|
421
425
|
| **--ignore-metadata-check** | <code>boolean</code> | Ignores the metadata (node_modules) check when uploading |
|
|
422
|
-
| **--fail-on-incompatible** | <code>boolean</code> | Fail the upload (exit non-zero) instead of uploading when the bundle is incompatible with the channel's current native packages. In an interactive terminal you can still choose a native build; declining fails. Cannot be combined with --ignore-metadata-check. |
|
|
426
|
+
| **--fail-on-incompatible** | <code>boolean</code> | Fail the upload (exit non-zero) instead of uploading when the bundle is incompatible with the channel's current native packages. In an interactive terminal you can still choose a native build; declining fails. Cannot be combined with --ignore-metadata-check or --accept-incompatible. |
|
|
427
|
+
| **--accept-incompatible** | <code>boolean</code> | Accept native-package incompatibility as handled (still checks and warns, continues, skips the crash-warning email). Use this when your app already guards missing plugins at runtime. Cannot be combined with --fail-on-incompatible or --ignore-metadata-check. |
|
|
423
428
|
| **--ignore-checksum-check** | <code>boolean</code> | Ignores the checksum check when uploading |
|
|
424
429
|
| **--force-crc32-checksum** | <code>boolean</code> | Force CRC32 checksum for upload (override auto-detection) |
|
|
425
430
|
| **--timeout** | <code>string</code> | Timeout for the upload process in seconds |
|
|
@@ -997,6 +1002,7 @@ npx @capgo/cli@latest channel set production com.example.app --bundle 1.0.0 --st
|
|
|
997
1002
|
| **--send-update-notification** | <code>boolean</code> | Send a native update-check notification to devices after updating the linked channel bundle |
|
|
998
1003
|
| **--package-json** | <code>string</code> | Paths to package.json files for monorepos (comma-separated) |
|
|
999
1004
|
| **--ignore-metadata-check** | <code>boolean</code> | Ignore checking node_modules compatibility if present in the bundle |
|
|
1005
|
+
| **--accept-incompatible** | <code>boolean</code> | Accept native-package incompatibility as handled (still checks and warns, sets the channel instead of failing). Use this when your app already guards missing plugins at runtime. Cannot be combined with --ignore-metadata-check. |
|
|
1000
1006
|
| **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
|
|
1001
1007
|
| **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
|
|
1002
1008
|
|