@capgo/cli 8.48.2 → 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 +25 -0
- package/dist/index.js +735 -717
- package/dist/package.json +5 -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/sdk.js +307 -307
- package/package.json +5 -3
- package/skills/native-builds/SKILL.md +10 -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)
|
|
@@ -1617,6 +1618,30 @@ Example:
|
|
|
1617
1618
|
| **--local** | <code>boolean</code> | Save into the per-project .capgo-credentials.json instead of the global file |
|
|
1618
1619
|
| **--json** | <code>boolean</code> | Print the captured Key ID / Issuer ID / .p8 path as JSON |
|
|
1619
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
|
+
|
|
1620
1645
|
#### <a id="build-credentials-save"></a> 🔹 **Save**
|
|
1621
1646
|
|
|
1622
1647
|
```bash
|