@hot-updater/aws 0.12.5 → 0.12.6
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/lambda/index.cjs +8 -14
- package/package.json +2 -2
package/dist/lambda/index.cjs
CHANGED
|
@@ -4069,8 +4069,8 @@ var __webpack_modules__ = {
|
|
|
4069
4069
|
const anum = numeric.test(a);
|
|
4070
4070
|
const bnum = numeric.test(b);
|
|
4071
4071
|
if (anum && bnum) {
|
|
4072
|
-
a
|
|
4073
|
-
b
|
|
4072
|
+
a *= 1;
|
|
4073
|
+
b *= 1;
|
|
4074
4074
|
}
|
|
4075
4075
|
return a === b ? 0 : anum && !bnum ? -1 : bnum && !anum ? 1 : a < b ? -1 : 1;
|
|
4076
4076
|
};
|
|
@@ -4460,8 +4460,8 @@ var __webpack_modules__ = {
|
|
|
4460
4460
|
}
|
|
4461
4461
|
let higher, lower;
|
|
4462
4462
|
let hasDomLT, hasDomGT;
|
|
4463
|
-
let needDomLTPre =
|
|
4464
|
-
let needDomGTPre =
|
|
4463
|
+
let needDomLTPre = lt && !options.includePrerelease && lt.semver.prerelease.length ? lt.semver : false;
|
|
4464
|
+
let needDomGTPre = gt && !options.includePrerelease && gt.semver.prerelease.length ? gt.semver : false;
|
|
4465
4465
|
if (needDomLTPre && 1 === needDomLTPre.prerelease.length && "<" === lt.operator && 0 === needDomLTPre.prerelease[0]) needDomLTPre = false;
|
|
4466
4466
|
for (const c of dom) {
|
|
4467
4467
|
hasDomGT = hasDomGT || ">" === c.operator || ">=" === c.operator;
|
|
@@ -4531,12 +4531,8 @@ function __webpack_require__(moduleId) {
|
|
|
4531
4531
|
return module2.exports;
|
|
4532
4532
|
}
|
|
4533
4533
|
(() => {
|
|
4534
|
-
__webpack_require__.n =
|
|
4535
|
-
var getter = module2 && module2.__esModule ?
|
|
4536
|
-
return module2["default"];
|
|
4537
|
-
} : function() {
|
|
4538
|
-
return module2;
|
|
4539
|
-
};
|
|
4534
|
+
__webpack_require__.n = (module2) => {
|
|
4535
|
+
var getter = module2 && module2.__esModule ? () => module2["default"] : () => module2;
|
|
4540
4536
|
__webpack_require__.d(getter, {
|
|
4541
4537
|
a: getter
|
|
4542
4538
|
});
|
|
@@ -4544,7 +4540,7 @@ function __webpack_require__(moduleId) {
|
|
|
4544
4540
|
};
|
|
4545
4541
|
})();
|
|
4546
4542
|
(() => {
|
|
4547
|
-
__webpack_require__.d =
|
|
4543
|
+
__webpack_require__.d = (exports2, definition) => {
|
|
4548
4544
|
for (var key in definition) if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports2, key)) Object.defineProperty(exports2, key, {
|
|
4549
4545
|
enumerable: true,
|
|
4550
4546
|
get: definition[key]
|
|
@@ -4552,9 +4548,7 @@ function __webpack_require__(moduleId) {
|
|
|
4552
4548
|
};
|
|
4553
4549
|
})();
|
|
4554
4550
|
(() => {
|
|
4555
|
-
__webpack_require__.o =
|
|
4556
|
-
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
4557
|
-
};
|
|
4551
|
+
__webpack_require__.o = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop);
|
|
4558
4552
|
})();
|
|
4559
4553
|
var isNullable = (value) => null == value;
|
|
4560
4554
|
var checkForRollback = (bundles, currentBundleId) => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hot-updater/aws",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.12.
|
|
4
|
+
"version": "0.12.6",
|
|
5
5
|
"description": "React Native OTA solution for self-hosted",
|
|
6
6
|
"main": "dist/src/index.cjs",
|
|
7
7
|
"module": "dist/src/index.js",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@aws-sdk/client-s3": "^3.685.0",
|
|
53
53
|
"@aws-sdk/credential-providers": "^3.744.0",
|
|
54
54
|
"@aws-sdk/lib-storage": "^3.685.0",
|
|
55
|
-
"@hot-updater/plugin-core": "0.12.
|
|
55
|
+
"@hot-updater/plugin-core": "0.12.6",
|
|
56
56
|
"aws-lambda": "^1.0.7"
|
|
57
57
|
},
|
|
58
58
|
"scripts": {
|