@capgo/cli 8.1.9 → 8.2.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 +2 -2
- package/dist/index.js +531 -531
- package/dist/package.json +1 -1
- package/dist/src/bundle/upload-channels.d.ts +6 -0
- package/dist/src/sdk.js +269 -269
- package/dist/src/utils.d.ts +0 -1
- package/package.json +1 -1
- package/skills/release-management/SKILL.md +5 -3
package/README.md
CHANGED
|
@@ -267,7 +267,7 @@ Capgo never inspects external content. Add encryption for trustless security.
|
|
|
267
267
|
**Example:**
|
|
268
268
|
|
|
269
269
|
```bash
|
|
270
|
-
npx @capgo/cli@latest bundle upload com.example.app --path ./dist --channel production
|
|
270
|
+
npx @capgo/cli@latest bundle upload com.example.app --path ./dist --channel production,beta
|
|
271
271
|
```
|
|
272
272
|
|
|
273
273
|
**Options:**
|
|
@@ -276,7 +276,7 @@ npx @capgo/cli@latest bundle upload com.example.app --path ./dist --channel prod
|
|
|
276
276
|
| -------------- | ------------- | -------------------- |
|
|
277
277
|
| **-a** | <code>string</code> | API key to link to your account |
|
|
278
278
|
| **-p** | <code>string</code> | Path of the folder to upload, if not provided it will use the webDir set in capacitor.config |
|
|
279
|
-
| **-c** | <code>string</code> | Channel to link to |
|
|
279
|
+
| **-c** | <code>string</code> | Channel to link to. Use commas for multiple channels, for example production,beta |
|
|
280
280
|
| **-e** | <code>string</code> | Link to external URL instead of upload to Capgo Cloud |
|
|
281
281
|
| **--iv-session-key** | <code>string</code> | Set the IV and session key for bundle URL external |
|
|
282
282
|
| **--s3-region** | <code>string</code> | Region for your S3 bucket |
|