@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/package.json
CHANGED
|
@@ -159,6 +159,9 @@ interface BuildLogger {
|
|
|
159
159
|
- `--skip-build-number-bump`
|
|
160
160
|
- `--no-skip-build-number-bump`
|
|
161
161
|
- `--no-cache`: disable Xcode compilation cache for this build (default: cache enabled). Example: `npx @capgo/cli@latest build request com.example.app --platform ios --no-cache`
|
|
162
|
+
- `--cache-key <key>`: custom compilation cache namespace for this build (e.g. `rc`, `prod`, `feature/my-branch`). Use to share cache within an environment or isolate cache between RC and production. Ignored when `--no-cache` is set. Example RC vs PROD:
|
|
163
|
+
- RC: `npx @capgo/cli@latest build request com.example.app --platform ios --cache-key rc`
|
|
164
|
+
- PROD: `npx @capgo/cli@latest build request com.example.app --platform ios --cache-key prod`
|
|
162
165
|
|
|
163
166
|
## Local credential management
|
|
164
167
|
|