@capgo/cli 4.21.7 → 4.21.8
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 -4
- package/dist/index.js +44 -44
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -147,10 +147,10 @@ Options:
|
|
|
147
147
|
* `--channel <channel>` Channel to link to.
|
|
148
148
|
* `--external <url>` Link to external URL instead of uploading to Capgo Cloud.
|
|
149
149
|
* `--iv-session-key <key>` Set the IV and session key for bundle URL external.
|
|
150
|
-
* `--s3-
|
|
150
|
+
* `--s3-endpoint <s3Endpoint>` URL of S3 endpoint. Do not work with Partial upload, or external option.
|
|
151
|
+
* `--s3-region <region>` Region for your S3 bucket.
|
|
151
152
|
* `--s3-apikey <apikey>` API key for your S3 endpoint.
|
|
152
153
|
* `--s3-apisecret <apisecret>` API secret for your S3 endpoint.
|
|
153
|
-
* `--s3-endpoint <s3Endpoint>` URL of S3 endpoint.
|
|
154
154
|
* `--s3-bucket-name <bucketName>` Name for your AWS S3 bucket.
|
|
155
155
|
* `--s3-port <port>` Port for your S3 endpoint.
|
|
156
156
|
* `--no-s3-ssl` Disable SSL for S3 upload.
|
|
@@ -162,14 +162,15 @@ Options:
|
|
|
162
162
|
* `--no-key` Ignore signing key and send clear update.
|
|
163
163
|
* `--no-code-check` Ignore checking if notifyAppReady() is called in source code and index present in root folder.
|
|
164
164
|
* `--display-iv-session` Show in the console the IV and session key used to encrypt the update.
|
|
165
|
-
* `--tus` Upload the bundle using TUS protocol.
|
|
166
165
|
* `--bundle <bundle>` Bundle version number of the bundle to upload.
|
|
167
166
|
* `--min-update-version <minUpdateVersion>` Minimal version required to update to this version. Used only if the disable auto update is set to metadata in channel.
|
|
168
167
|
* `--auto-min-update-version` Set the min update version based on native packages.
|
|
169
168
|
* `--ignore-metadata-check` Ignores the metadata (node_modules) check when uploading.
|
|
170
169
|
* `--ignore-checksum-check` Ignores the checksum check when uploading.
|
|
171
170
|
* `--timeout <timeout>` Timeout for the upload process in seconds.
|
|
172
|
-
* `--
|
|
171
|
+
* `--partial` Does not upload partial files to Capgo cloud.
|
|
172
|
+
* `--tus` Upload the bundle using tus protocol.
|
|
173
|
+
* `--multipart` Uses multipart protocol to upload data to S3, Deprecated, use TUS instead.
|
|
173
174
|
* `--encrypted-checksum <encryptedChecksum>` An encrypted checksum (signature). Used only when uploading an external bundle.
|
|
174
175
|
|
|
175
176
|
> ⭐️ External option helps to unlock 2 cases: corporate with privacy concern, don't send the code to a third part and app bigger than 200 MB. With this setting, Capgo store only the link to the zip and sends the link to all apps.
|