minimal-piral 1.2.0-beta.5869 → 1.3.0-beta.6001

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.
@@ -3547,12 +3547,12 @@ function installPiralDebug(options) {
3547
3547
  debug: debugApiVersion,
3548
3548
  instance: {
3549
3549
  name: "minimal-piral",
3550
- version: "1.2.0-beta.5869",
3550
+ version: "1.3.0-beta.6001",
3551
3551
  dependencies: "tslib,react,react-dom,react-router,react-router-dom"
3552
3552
  },
3553
3553
  build: {
3554
- date: "2023-08-28T12:46:47.403Z",
3555
- cli: "1.2.0-beta.5869",
3554
+ date: "2023-09-26T21:30:16.798Z",
3555
+ cli: "1.3.0-beta.6001",
3556
3556
  compat: "1"
3557
3557
  }
3558
3558
  };
@@ -43342,8 +43342,13 @@ function compareVersions(v1, v2) {
43342
43342
  var s2 = splitVersion(v2);
43343
43343
  var len = Math.max(s1.length - 1, s2.length - 1);
43344
43344
  for (var i = 0; i < len; i++) {
43345
- var n1 = parseInt(s1[i] || "0", 10);
43346
- var n2 = parseInt(s2[i] || "0", 10);
43345
+ var m1 = s1[i] || "0";
43346
+ var m2 = s2[i] || "0";
43347
+ if (m2 === "x") {
43348
+ return 0;
43349
+ }
43350
+ var n1 = parseInt(m1, 10);
43351
+ var n2 = parseInt(m2, 10);
43347
43352
  if (n1 > n2) {
43348
43353
  return 1;
43349
43354
  } else if (n2 > n1) {
@@ -44440,4 +44445,4 @@ var instance = (0,piral_core__WEBPACK_IMPORTED_MODULE_2__.createInstance)({
44440
44445
 
44441
44446
  /******/ })()
44442
44447
  ;
44443
- //# sourceMappingURL=index.cfe01d.js.map
44448
+ //# sourceMappingURL=index.a79207.js.map