@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/.eslintrc
DELETED
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": [
|
|
3
|
-
"airbnb-base",
|
|
4
|
-
"plugin:@typescript-eslint/recommended",
|
|
5
|
-
"eslint-config-prettier"
|
|
6
|
-
],
|
|
7
|
-
"parser": "@typescript-eslint/parser",
|
|
8
|
-
"plugins": [
|
|
9
|
-
"@typescript-eslint",
|
|
10
|
-
"prettier"
|
|
11
|
-
],
|
|
12
|
-
"settings": {
|
|
13
|
-
"import/parsers": {
|
|
14
|
-
"@typescript-eslint/parser": [
|
|
15
|
-
".ts",
|
|
16
|
-
".tsx"
|
|
17
|
-
]
|
|
18
|
-
},
|
|
19
|
-
"import/resolver": {
|
|
20
|
-
"typescript": {}
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"rules": {
|
|
24
|
-
"no-shadow": "off",
|
|
25
|
-
"@typescript-eslint/no-explicit-any": "off",
|
|
26
|
-
"@typescript-eslint/no-shadow": [
|
|
27
|
-
"error"
|
|
28
|
-
],
|
|
29
|
-
"import/prefer-default-export": 0,
|
|
30
|
-
"no-param-reassign": 0,
|
|
31
|
-
"import/no-extraneous-dependencies": [
|
|
32
|
-
2,
|
|
33
|
-
{
|
|
34
|
-
"devDependencies": [
|
|
35
|
-
"**/spec.tsx",
|
|
36
|
-
"**/spec.ts",
|
|
37
|
-
"__tests__/**/*"
|
|
38
|
-
]
|
|
39
|
-
}
|
|
40
|
-
],
|
|
41
|
-
"import/extensions": 0,
|
|
42
|
-
"indent": "off",
|
|
43
|
-
"eofline": 0,
|
|
44
|
-
"arrow-parens": 0,
|
|
45
|
-
"ordered-imports": 0,
|
|
46
|
-
"object-literal-sort-keys": 0,
|
|
47
|
-
"no-empty": 2,
|
|
48
|
-
"no-unused-expression": 0,
|
|
49
|
-
"linebreak-style": 0,
|
|
50
|
-
"@typescript-eslint/explicit-function-return-type": 0,
|
|
51
|
-
"max-len": [
|
|
52
|
-
"error",
|
|
53
|
-
{
|
|
54
|
-
"code": 140
|
|
55
|
-
}
|
|
56
|
-
],
|
|
57
|
-
"@typescript-eslint/no-use-before-define": 0,
|
|
58
|
-
"@typescript-eslint/no-empty-function": 0,
|
|
59
|
-
"no-unused-expressions": 0,
|
|
60
|
-
"operator-linebreak": 0,
|
|
61
|
-
"implicit-arrow-linebreak": 0,
|
|
62
|
-
"no-implicit-dependencies": 0,
|
|
63
|
-
"no-use-before-define": 0,
|
|
64
|
-
"class-methods-use-this": 0,
|
|
65
|
-
"no-restricted-syntax": 0,
|
|
66
|
-
"no-await-in-loop": 0,
|
|
67
|
-
"no-continue": 0,
|
|
68
|
-
"no-underscore-dangle": 0,
|
|
69
|
-
"no-console": 0
|
|
70
|
-
}
|
|
71
|
-
}
|