@capgo/cli 7.111.0 → 7.111.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 -1
- package/dist/index.js +266 -266
- package/dist/package.json +1 -1
- package/dist/src/init/command.d.ts +1 -2
- package/dist/src/sdk.js +196 -196
- package/dist/src/updaterConfig.d.ts +8 -0
- package/package.json +1 -1
- package/skills/usage/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -282,7 +282,7 @@ npx @capgo/cli@latest bundle upload com.example.app --path ./dist --channel prod
|
|
|
282
282
|
| **--partial-only** | <code>boolean</code> | [DEPRECATED] Use --delta-only instead. Upload only incremental updates, skip full bundle |
|
|
283
283
|
| **--delta** | <code>boolean</code> | Upload delta updates (only changed files) for instant, super-fast updates instead of big zip downloads |
|
|
284
284
|
| **--delta-only** | <code>boolean</code> | Upload only delta updates without full bundle for maximum speed (useful for large apps) |
|
|
285
|
-
| **--no-delta** | <code>boolean</code> | Disable delta updates even if
|
|
285
|
+
| **--no-delta** | <code>boolean</code> | Disable delta updates even if instant updates are enabled |
|
|
286
286
|
| **--encrypted-checksum** | <code>string</code> | An encrypted checksum (signature). Used only when uploading an external bundle. |
|
|
287
287
|
| **--auto-set-bundle** | <code>boolean</code> | Set the bundle in capacitor.config.json |
|
|
288
288
|
| **--dry-upload** | <code>boolean</code> | Dry upload the bundle process: add the row in database without uploading files or updating channels (Used by Capgo for internal testing) |
|