@capgo/cli 8.48.1 → 8.49.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 +27 -0
- package/dist/index.js +736 -717
- package/dist/package.json +6 -3
- package/dist/src/build/credentials-export-command.d.ts +4 -7
- package/dist/src/build/credentials-store-selection.d.ts +16 -0
- package/dist/src/build/ios-provisioning-command.d.ts +32 -0
- package/dist/src/build/ios-provisioning-map.d.ts +35 -0
- package/dist/src/build/prescan/checks/ios-profiles.d.ts +1 -0
- package/dist/src/build/request.d.ts +4 -0
- 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 +307 -307
- package/package.json +6 -3
- package/skills/native-builds/SKILL.md +11 -0
package/README.md
CHANGED
|
@@ -177,6 +177,7 @@ Capgo continues to load the root config while writing only the selected source.
|
|
|
177
177
|
- [Last-output](#build-last-output)
|
|
178
178
|
- [Credentials](#build-credentials)
|
|
179
179
|
- [Apple-key](#build-credentials-apple-key)
|
|
180
|
+
- [Ios-provisioning](#build-credentials-ios-provisioning)
|
|
180
181
|
- [Save](#build-credentials-save)
|
|
181
182
|
- [List](#build-credentials-list)
|
|
182
183
|
- [Clear](#build-credentials-clear)
|
|
@@ -1433,6 +1434,7 @@ and/or to Capgo storage as a time-limited download link (--output-upload).
|
|
|
1433
1434
|
`npx @capgo/cli@latest build credentials save --appId <app-id> --platform <ios|android>`
|
|
1434
1435
|
Android AAB only (no Play upload): npx @capgo/cli@latest build request com.example.app --platform android --no-playstore-upload --output-upload
|
|
1435
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
|
+
Disable Xcode compilation cache: npx @capgo/cli@latest build request com.example.app --platform ios --no-cache
|
|
1436
1438
|
|
|
1437
1439
|
**Example:**
|
|
1438
1440
|
|
|
@@ -1490,6 +1492,7 @@ npx @capgo/cli@latest build request com.example.app --platform ios --path .
|
|
|
1490
1492
|
| **--sync-android-version** | <code>boolean</code> | Android: sync versionName in android/app/build.gradle from package.json before uploading the project. Fails unless versionName is a standalone quoted string literal. |
|
|
1491
1493
|
| **--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. |
|
|
1492
1494
|
| **--no-prescan** | <code>boolean</code> | Skip the automatic pre-build scan |
|
|
1495
|
+
| **--no-cache** | <code>boolean</code> | Disable Xcode compilation cache for this build (default: cache enabled) |
|
|
1493
1496
|
| **--prescan-ignore-fatal** | <code>boolean</code> | Run the pre-build scan but never block the build (report only) |
|
|
1494
1497
|
| **--prescan-skip** | <code>string</code> | Skip specific prescan check(s) by id (repeatable or comma-separated). Other checks still run. |
|
|
1495
1498
|
| **--prescan-warn** | <code>string</code> | Downgrade specific prescan check(s) to warning by id (repeatable or comma-separated). Check still runs. |
|
|
@@ -1615,6 +1618,30 @@ Example:
|
|
|
1615
1618
|
| **--local** | <code>boolean</code> | Save into the per-project .capgo-credentials.json instead of the global file |
|
|
1616
1619
|
| **--json** | <code>boolean</code> | Print the captured Key ID / Issuer ID / .p8 path as JSON |
|
|
1617
1620
|
|
|
1621
|
+
#### <a id="build-credentials-ios-provisioning"></a> 🔹 **Ios-provisioning**
|
|
1622
|
+
|
|
1623
|
+
```bash
|
|
1624
|
+
npx @capgo/cli@latest build credentials ios-provisioning
|
|
1625
|
+
```
|
|
1626
|
+
|
|
1627
|
+
Set up provisioning profiles for every signable iOS target.
|
|
1628
|
+
Reuses an eligible saved wildcard profile after confirmation, or generates
|
|
1629
|
+
missing App Store profiles with the saved App Store Connect .p8 key.
|
|
1630
|
+
npx @capgo/cli@latest build credentials ios-provisioning
|
|
1631
|
+
|
|
1632
|
+
**Example:**
|
|
1633
|
+
|
|
1634
|
+
```bash
|
|
1635
|
+
Example:
|
|
1636
|
+
```
|
|
1637
|
+
|
|
1638
|
+
**Options:**
|
|
1639
|
+
|
|
1640
|
+
| Param | Type | Description |
|
|
1641
|
+
| -------------- | ------------- | -------------------- |
|
|
1642
|
+
| **--local** | <code>boolean</code> | Use credentials from the current project |
|
|
1643
|
+
| **--global** | <code>boolean</code> | Use credentials from the global store |
|
|
1644
|
+
|
|
1618
1645
|
#### <a id="build-credentials-save"></a> 🔹 **Save**
|
|
1619
1646
|
|
|
1620
1647
|
```bash
|