@capgo/cli 4.0.12 → 4.0.14
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 +10 -0
- package/bun.lockb +0 -0
- package/capacitor.config.ts +2 -2
- package/dist/index.js +654 -658
- package/eslint.config.js +3 -0
- package/package.json +3 -2
- package/src/api/app.ts +32 -39
- package/src/api/channels.ts +53 -49
- package/src/api/crypto.ts +83 -80
- package/src/api/devices_override.ts +12 -13
- package/src/api/update.ts +10 -10
- package/src/api/versions.ts +43 -42
- package/src/app/add.ts +61 -53
- package/src/app/debug.ts +153 -151
- package/src/app/delete.ts +61 -59
- package/src/app/info.ts +74 -77
- package/src/app/list.ts +33 -31
- package/src/app/set.ts +85 -82
- package/src/bundle/check.ts +30 -32
- package/src/bundle/cleanup.ts +71 -74
- package/src/bundle/compatibility.ts +52 -55
- package/src/bundle/decrypt.ts +21 -19
- package/src/bundle/delete.ts +27 -25
- package/src/bundle/encrypt.ts +23 -21
- package/src/bundle/list.ts +42 -40
- package/src/bundle/unlink.ts +69 -60
- package/src/bundle/upload.ts +170 -149
- package/src/bundle/zip.ts +122 -118
- package/src/channel/add.ts +62 -60
- package/src/channel/currentBundle.ts +56 -56
- package/src/channel/delete.ts +46 -43
- package/src/channel/list.ts +23 -21
- package/src/channel/set.ts +76 -68
- package/src/index.ts +55 -57
- package/src/init.ts +254 -252
- package/src/key.ts +56 -52
- package/src/login.ts +30 -28
- package/src/types/capacitor__cli.d.ts +2 -3
- package/src/types/supabase.types.ts +505 -505
- package/src/utils.ts +560 -571
- package/.eslintrc +0 -71
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
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.0.14](https://github.com/Cap-go/CLI/compare/v4.0.13...v4.0.14) (2024-02-27)
|
|
6
|
+
|
|
7
|
+
### [4.0.13](https://github.com/Cap-go/CLI/compare/v4.0.12...v4.0.13) (2024-02-26)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* add back lint with same config as usual ([8542260](https://github.com/Cap-go/CLI/commit/8542260aacd26842acbd4d623c4ef960fc776cec))
|
|
13
|
+
* formating with clack of doctor command ([4bd7182](https://github.com/Cap-go/CLI/commit/4bd71820d9aab67e9d12048d140a4eb76d807859))
|
|
14
|
+
|
|
5
15
|
### [4.0.12](https://github.com/Cap-go/CLI/compare/v4.0.11...v4.0.12) (2024-02-26)
|
|
6
16
|
|
|
7
17
|
### [4.0.11](https://github.com/Cap-go/CLI/compare/v4.0.10...v4.0.11) (2024-02-25)
|
package/bun.lockb
CHANGED
|
Binary file
|
package/capacitor.config.ts
CHANGED
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
import type { CapacitorConfig } from '@capacitor/cli'
|
|
17
17
|
|
|
18
18
|
const config: CapacitorConfig = {
|
|
19
|
-
appId: '
|
|
20
|
-
appName: '
|
|
19
|
+
appId: 'ee.forgr.capacitor_go',
|
|
20
|
+
appName: 'Capgo',
|
|
21
21
|
webDir: 'dist',
|
|
22
22
|
bundledWebRuntime: false,
|
|
23
23
|
plugins: {
|