@capgo/cli 7.99.3 → 7.100.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 +24 -0
- package/dist/index.js +474 -459
- package/dist/package.json +1 -1
- package/dist/src/build/credentials-manage.d.ts +7 -0
- package/dist/src/build/onboarding/file-picker.d.ts +11 -0
- package/dist/src/sdk.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -79,6 +79,7 @@ Follow the documentation here: https://capacitorjs.com/docs/getting-started/
|
|
|
79
79
|
- [List](#build-credentials-list)
|
|
80
80
|
- [Clear](#build-credentials-clear)
|
|
81
81
|
- [Update](#build-credentials-update)
|
|
82
|
+
- [Manage](#build-credentials-manage)
|
|
82
83
|
- [Migrate](#build-credentials-migrate)
|
|
83
84
|
- 🔹 [Probe](#probe)
|
|
84
85
|
- 🔹 [Generate-docs](#generate-docs)
|
|
@@ -1419,6 +1420,29 @@ Examples:
|
|
|
1419
1420
|
| **--skip-build-number-bump** | <code>boolean</code> | Skip automatic build number/version code incrementing on future builds |
|
|
1420
1421
|
| **--no-skip-build-number-bump** | <code>boolean</code> | Re-enable automatic build number incrementing (default behavior) |
|
|
1421
1422
|
|
|
1423
|
+
#### <a id="build-credentials-manage"></a> 🔹 **Manage**
|
|
1424
|
+
|
|
1425
|
+
```bash
|
|
1426
|
+
npx @capgo/cli@latest build credentials manage
|
|
1427
|
+
```
|
|
1428
|
+
|
|
1429
|
+
Interactively manage saved build credentials.
|
|
1430
|
+
Browse stored credentials, view what's configured, export a CI/CD-ready .env file,
|
|
1431
|
+
or delete a platform's credentials. Reuses the same TUI as `capgo init`.
|
|
1432
|
+
Examples:
|
|
1433
|
+
npx @capgo/cli build credentials manage
|
|
1434
|
+
npx @capgo/cli build credentials manage --appId com.example.app
|
|
1435
|
+
npx @capgo/cli build credentials manage --appId com.example.app --platform ios
|
|
1436
|
+
npx @capgo/cli build credentials manage --local
|
|
1437
|
+
|
|
1438
|
+
**Options:**
|
|
1439
|
+
|
|
1440
|
+
| Param | Type | Description |
|
|
1441
|
+
| -------------- | ------------- | -------------------- |
|
|
1442
|
+
| **--appId** | <code>string</code> | App ID to manage (optional, prompts to pick if omitted) |
|
|
1443
|
+
| **--platform** | <code>string</code> | Platform to manage: ios or android (optional, prompts to pick if omitted) |
|
|
1444
|
+
| **--local** | <code>boolean</code> | Only browse local .capgo-credentials.json |
|
|
1445
|
+
|
|
1422
1446
|
#### <a id="build-credentials-migrate"></a> 🔹 **Migrate**
|
|
1423
1447
|
|
|
1424
1448
|
```bash
|