@simplysm/capacitor-plugin-auto-update 12.16.13 → 12.16.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/dist/AutoUpdate.js +1 -0
- package/package.json +6 -6
- package/src/AutoUpdate.ts +1 -0
package/dist/AutoUpdate.js
CHANGED
|
@@ -124,6 +124,7 @@ export class AutoUpdate {
|
|
|
124
124
|
const serverVersionInfo = await autoUpdateServiceClient.getLastVersion("android");
|
|
125
125
|
if (!serverVersionInfo) {
|
|
126
126
|
// throw new Error("서버에서 최신버전 정보를 가져오지 못했습니다.");
|
|
127
|
+
// eslint-disable-next-line no-console
|
|
127
128
|
console.log("서버에서 최신버전 정보를 가져오지 못했습니다.");
|
|
128
129
|
return;
|
|
129
130
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplysm/capacitor-plugin-auto-update",
|
|
3
|
-
"version": "12.16.
|
|
3
|
+
"version": "12.16.14",
|
|
4
4
|
"description": "심플리즘 패키지 - Capacitor Plugin Auto Update",
|
|
5
5
|
"author": "김석래",
|
|
6
6
|
"repository": {
|
|
@@ -18,18 +18,18 @@
|
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@simplysm/sd-core-common": "12.16.
|
|
22
|
-
"@simplysm/sd-service-client": "12.16.
|
|
23
|
-
"@simplysm/sd-service-common": "12.16.
|
|
21
|
+
"@simplysm/sd-core-common": "12.16.14",
|
|
22
|
+
"@simplysm/sd-service-client": "12.16.14",
|
|
23
|
+
"@simplysm/sd-service-common": "12.16.14",
|
|
24
24
|
"semver": "^7.7.3"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@capacitor/core": "^7.4.4",
|
|
28
|
-
"@simplysm/capacitor-plugin-file-system": "12.16.
|
|
28
|
+
"@simplysm/capacitor-plugin-file-system": "12.16.14",
|
|
29
29
|
"@types/semver": "^7.7.1"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"@capacitor/core": "^7.0.0",
|
|
33
|
-
"@simplysm/capacitor-plugin-file-system": "12.16.
|
|
33
|
+
"@simplysm/capacitor-plugin-file-system": "12.16.14"
|
|
34
34
|
}
|
|
35
35
|
}
|
package/src/AutoUpdate.ts
CHANGED
|
@@ -144,6 +144,7 @@ export abstract class AutoUpdate {
|
|
|
144
144
|
const serverVersionInfo = await autoUpdateServiceClient.getLastVersion("android");
|
|
145
145
|
if (!serverVersionInfo) {
|
|
146
146
|
// throw new Error("서버에서 최신버전 정보를 가져오지 못했습니다.");
|
|
147
|
+
// eslint-disable-next-line no-console
|
|
147
148
|
console.log("서버에서 최신버전 정보를 가져오지 못했습니다.");
|
|
148
149
|
return;
|
|
149
150
|
}
|