@capgo/cli 7.95.10 → 7.95.11
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/dist/index.js +297 -297
- package/dist/package.json +3 -2
- package/dist/src/build/request.d.ts +7 -0
- package/dist/src/schemas/build.d.ts +2 -2
- package/dist/src/sdk.js +218 -218
- package/package.json +3 -2
- package/skills/native-builds/SKILL.md +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "7.95.
|
|
4
|
+
"version": "7.95.11",
|
|
5
5
|
"description": "A CLI to upload to capgo servers",
|
|
6
6
|
"author": "Martin martin@capgo.app",
|
|
7
7
|
"license": "Apache 2.0",
|
|
@@ -86,7 +86,8 @@
|
|
|
86
86
|
"test:version-detection:setup": "./test/fixtures/setup-test-projects.sh",
|
|
87
87
|
"test:platform-paths": "bun test/test-platform-paths.mjs",
|
|
88
88
|
"test:payload-split": "bun test/test-payload-split.mjs",
|
|
89
|
-
"test": "bun run build && bun run test:version-detection:setup && bun run test:bundle && bun run test:functional && bun run test:semver && bun run test:version-edge-cases && bun run test:regex && bun run test:upload && bun run test:credentials && bun run test:credentials-validation && bun run test:build-zip-filter && bun run test:checksum && bun run test:ci-prompts && bun run test:onboarding-recovery && bun run test:onboarding-run-targets && bun run test:run-device-command && bun run test:init-app-conflict && bun run test:init-guardrails && bun run test:prompt-preferences && bun run test:esm-sdk && bun run test:mcp && bun run test:version-detection && bun run test:platform-paths && bun run test:payload-split"
|
|
89
|
+
"test": "bun run build && bun run test:version-detection:setup && bun run test:bundle && bun run test:functional && bun run test:semver && bun run test:version-edge-cases && bun run test:regex && bun run test:upload && bun run test:credentials && bun run test:credentials-validation && bun run test:build-zip-filter && bun run test:checksum && bun run test:ci-prompts && bun run test:build-platform-selection && bun run test:onboarding-recovery && bun run test:onboarding-run-targets && bun run test:run-device-command && bun run test:init-app-conflict && bun run test:init-guardrails && bun run test:prompt-preferences && bun run test:esm-sdk && bun run test:mcp && bun run test:version-detection && bun run test:platform-paths && bun run test:payload-split",
|
|
90
|
+
"test:build-platform-selection": "bun test/test-build-platform-selection.mjs"
|
|
90
91
|
},
|
|
91
92
|
"dependencies": {
|
|
92
93
|
"@inkjs/ui": "^2.0.0",
|
|
@@ -86,7 +86,7 @@ interface BuildLogger {
|
|
|
86
86
|
- Core options:
|
|
87
87
|
- `--path <path>`
|
|
88
88
|
- `--node-modules <nodeModules>`: paths to `node_modules` directories for monorepos, comma-separated.
|
|
89
|
-
- `--platform <platform>`: `ios` or `android
|
|
89
|
+
- `--platform <platform>`: `ios` or `android`. If omitted in an interactive terminal, the CLI prompts for the platform; non-interactive runs must pass it explicitly.
|
|
90
90
|
- `--build-mode <buildMode>`: `debug` or `release`.
|
|
91
91
|
- `-a, --apikey <apikey>`
|
|
92
92
|
- `--verbose`
|