@capgo/cli 7.121.0 → 7.122.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 +1 -0
- package/dist/index.js +378 -378
- package/dist/package.json +3 -2
- package/dist/src/bundle/builder-cta.d.ts +18 -0
- package/dist/src/bundle/upload.d.ts +7 -0
- package/dist/src/schemas/bundle.d.ts +1 -0
- package/dist/src/sdk.js +190 -190
- package/package.json +3 -2
- package/skills/release-management/SKILL.md +1 -0
package/README.md
CHANGED
|
@@ -271,6 +271,7 @@ npx @capgo/cli@latest bundle upload com.example.app --path ./dist --channel prod
|
|
|
271
271
|
| **--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 |
|
|
272
272
|
| **--auto-min-update-version** | <code>boolean</code> | Set the min update version based on native packages |
|
|
273
273
|
| **--ignore-metadata-check** | <code>boolean</code> | Ignores the metadata (node_modules) check when uploading |
|
|
274
|
+
| **--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. |
|
|
274
275
|
| **--ignore-checksum-check** | <code>boolean</code> | Ignores the checksum check when uploading |
|
|
275
276
|
| **--force-crc32-checksum** | <code>boolean</code> | Force CRC32 checksum for upload (override auto-detection) |
|
|
276
277
|
| **--timeout** | <code>string</code> | Timeout for the upload process in seconds |
|