@capgo/cli 8.49.1 → 8.50.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 +2 -0
- package/dist/index.js +624 -623
- package/dist/package.json +1 -1
- package/dist/src/build/request.d.ts +10 -3
- package/dist/src/mcp/tool-schemas.d.ts +1 -0
- package/dist/src/schemas/build.d.ts +2 -0
- package/dist/src/schemas/sdk.d.ts +1 -0
- package/dist/src/sdk.js +281 -281
- package/package.json +1 -1
- package/skills/native-builds/SKILL.md +3 -0
package/README.md
CHANGED
|
@@ -1435,6 +1435,7 @@ and/or to Capgo storage as a time-limited download link (--output-upload).
|
|
|
1435
1435
|
Android AAB only (no Play upload): npx @capgo/cli@latest build request com.example.app --platform android --no-playstore-upload --output-upload
|
|
1436
1436
|
iOS IPA only (no TestFlight upload): npx @capgo/cli@latest build request com.example.app --platform ios --ios-distribution ad_hoc --output-upload
|
|
1437
1437
|
Disable Xcode compilation cache: npx @capgo/cli@latest build request com.example.app --platform ios --no-cache
|
|
1438
|
+
Separate RC and PROD caches: npx @capgo/cli@latest build request com.example.app --platform ios --cache-key prod
|
|
1438
1439
|
|
|
1439
1440
|
**Example:**
|
|
1440
1441
|
|
|
@@ -1493,6 +1494,7 @@ npx @capgo/cli@latest build request com.example.app --platform ios --path .
|
|
|
1493
1494
|
| **--ai-analytics** | <code>boolean</code> | On build failure, send logs to Capgo AI for diagnosis. In interactive terminals this skips the upfront confirmation; in CI this auto-uploads and prints the analysis to stderr. |
|
|
1494
1495
|
| **--no-prescan** | <code>boolean</code> | Skip the automatic pre-build scan |
|
|
1495
1496
|
| **--no-cache** | <code>boolean</code> | Disable Xcode compilation cache for this build (default: cache enabled) |
|
|
1497
|
+
| **--cache-key** | <code>string</code> | Custom compilation cache key for this build (e.g. rc, prod, feature-branch). Use to share or isolate cache between environments. Precedence over the default appId-only key; ignored when --no-cache is set. |
|
|
1496
1498
|
| **--prescan-ignore-fatal** | <code>boolean</code> | Run the pre-build scan but never block the build (report only) |
|
|
1497
1499
|
| **--prescan-skip** | <code>string</code> | Skip specific prescan check(s) by id (repeatable or comma-separated). Other checks still run. |
|
|
1498
1500
|
| **--prescan-warn** | <code>string</code> | Downgrade specific prescan check(s) to warning by id (repeatable or comma-separated). Check still runs. |
|