@capgo/cli 7.88.0 → 7.88.2
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 +5 -3
- package/dist/index.js +389 -407
- package/dist/package.json +2 -2
- package/dist/src/build/onboarding/command.d.ts +1 -1
- package/dist/src/build/onboarding/file-picker.d.ts +1 -0
- package/dist/src/{init.d.ts → init/command.d.ts} +1 -1
- package/dist/src/init/index.d.ts +1 -0
- package/dist/src/init/prompts.d.ts +41 -0
- package/dist/src/init/runtime.d.ts +66 -0
- package/dist/src/init/ui/app.d.ts +8 -0
- package/dist/src/init/ui/components.d.ts +28 -0
- package/dist/src/init/ui.d.ts +12 -0
- package/dist/src/sdk.js +3 -3
- package/package.json +2 -2
- package/skills/native-builds/SKILL.md +4 -3
- package/skills/usage/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -69,7 +69,7 @@ Follow the documentation here: https://capacitorjs.com/docs/getting-started/
|
|
|
69
69
|
- [Set](#organisation-set)
|
|
70
70
|
- [Delete](#organisation-delete)
|
|
71
71
|
- 🔹 [Build](#build)
|
|
72
|
-
- [
|
|
72
|
+
- [Init](#build-init)
|
|
73
73
|
- [Request](#build-request)
|
|
74
74
|
- [Credentials](#build-credentials)
|
|
75
75
|
- 🔹 [Probe](#probe)
|
|
@@ -1118,10 +1118,12 @@ npx @capgo/cli@latest organisation delete
|
|
|
1118
1118
|
npx @capgo/cli build credentials save --appId <your-app-id> --platform ios
|
|
1119
1119
|
npx @capgo/cli build credentials save --appId <your-app-id> --platform android
|
|
1120
1120
|
|
|
1121
|
-
### <a id="build-
|
|
1121
|
+
### <a id="build-init"></a> 🚀 **Init**
|
|
1122
|
+
|
|
1123
|
+
**Alias:** `onboarding`
|
|
1122
1124
|
|
|
1123
1125
|
```bash
|
|
1124
|
-
npx @capgo/cli@latest build
|
|
1126
|
+
npx @capgo/cli@latest build init
|
|
1125
1127
|
```
|
|
1126
1128
|
|
|
1127
1129
|
Set up iOS build credentials interactively (creates certificates and profiles automatically)
|