@capgo/cli 4.10.15 → 4.10.16
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/CHANGELOG.md +7 -0
- package/dist/index.js +1 -2
- package/package.json +1 -1
- package/src/bundle/upload.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [4.10.16](https://github.com/Cap-go/CLI/compare/v4.10.15...v4.10.16) (2024-06-13)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* issue auto delete failed ([62fef1d](https://github.com/Cap-go/CLI/commit/62fef1dd5816c9c9781002d68f9566bbcace8e0f))
|
|
11
|
+
|
|
5
12
|
### [4.10.15](https://github.com/Cap-go/CLI/compare/v4.10.14...v4.10.15) (2024-06-12)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.js
CHANGED
|
@@ -110508,7 +110508,7 @@ async function getUserId(options) {
|
|
|
110508
110508
|
// package.json
|
|
110509
110509
|
var package_default = {
|
|
110510
110510
|
name: "@capgo/cli",
|
|
110511
|
-
version: "4.10.
|
|
110511
|
+
version: "4.10.16",
|
|
110512
110512
|
description: "A CLI to upload to capgo servers",
|
|
110513
110513
|
author: "github.com/riderx",
|
|
110514
110514
|
license: "Apache 2.0",
|
|
@@ -111576,7 +111576,6 @@ The app size is ${mbSize} Mb, this may take a while to download for users
|
|
|
111576
111576
|
if (errorUpload instanceof HTTPError) {
|
|
111577
111577
|
const body = await errorUpload.response.text();
|
|
111578
111578
|
f2.error(`Response: ${formatError(body)}`);
|
|
111579
|
-
program.error("");
|
|
111580
111579
|
}
|
|
111581
111580
|
await deletedFailedVersion(supabase, appid, bundle2);
|
|
111582
111581
|
program.error("");
|
package/package.json
CHANGED
package/src/bundle/upload.ts
CHANGED
|
@@ -416,7 +416,6 @@ It will be also visible in your dashboard\n`)
|
|
|
416
416
|
if (errorUpload instanceof HTTPError) {
|
|
417
417
|
const body = await errorUpload.response.text()
|
|
418
418
|
p.log.error(`Response: ${formatError(body)}`)
|
|
419
|
-
program.error('')
|
|
420
419
|
}
|
|
421
420
|
// call delete version on path /delete_failed_version to delete the version
|
|
422
421
|
await deletedFailedVersion(supabase, appid, bundle)
|