@capgo/cli 7.80.0 → 7.81.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 -1
- package/dist/index.js +137 -137
- package/dist/package.json +1 -1
- package/dist/src/build/credentials-command.d.ts +1 -0
- package/dist/src/schemas/build.d.ts +6 -0
- package/dist/src/schemas/sdk.d.ts +1 -0
- package/dist/src/sdk.js +150 -150
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1113,7 +1113,6 @@ npx @capgo/cli@latest build request com.example.app --platform ios --path .
|
|
|
1113
1113
|
| **--path** | <code>string</code> | Path to the project directory to build (default: current directory) |
|
|
1114
1114
|
| **--platform** | <code>string</code> | Target platform: ios or android (required) |
|
|
1115
1115
|
| **--build-mode** | <code>string</code> | Build mode: debug or release (default: release) |
|
|
1116
|
-
| **--build-config** | <code>string</code> | Additional build configuration as JSON string |
|
|
1117
1116
|
| **--build-certificate-base64** | <code>string</code> | iOS: Base64-encoded .p12 certificate |
|
|
1118
1117
|
| **--build-provision-profile-base64** | <code>string</code> | iOS: Base64-encoded provisioning profile |
|
|
1119
1118
|
| **--build-provision-profile-base64-prod** | <code>string</code> | iOS: Base64-encoded production provisioning profile |
|
|
@@ -1135,6 +1134,8 @@ npx @capgo/cli@latest build request com.example.app --platform ios --path .
|
|
|
1135
1134
|
| **--output-upload** | <code>boolean</code> | Override output upload behavior for this build only (enable). Precedence: CLI > env > saved credentials |
|
|
1136
1135
|
| **--no-output-upload** | <code>boolean</code> | Override output upload behavior for this build only (disable). Precedence: CLI > env > saved credentials |
|
|
1137
1136
|
| **--output-retention** | <code>string</code> | Override output link TTL for this build only (1h to 7d). Examples: 1h, 6h, 2d. Precedence: CLI > env > saved credentials |
|
|
1137
|
+
| **--skip-build-number-bump** | <code>boolean</code> | Skip automatic build number/version code incrementing. Uses whatever version is already in the project files. |
|
|
1138
|
+
| **--no-skip-build-number-bump** | <code>boolean</code> | Override saved credentials to re-enable automatic build number incrementing for this build only. |
|
|
1138
1139
|
| **-a,** | <code>string</code> | API key to link to your account |
|
|
1139
1140
|
| **--supa-host** | <code>string</code> | Custom Supabase host URL (for self-hosting or Capgo development) |
|
|
1140
1141
|
| **--supa-anon** | <code>string</code> | Custom Supabase anon key (for self-hosting) |
|