sample-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.
@@ -6330,12 +6330,12 @@ function installPiralDebug(options) {
6330
6330
  debug: debugApiVersion,
6331
6331
  instance: {
6332
6332
  name: "sample-piral",
6333
- version: "1.2.0-beta.5869",
6333
+ version: "1.3.0-beta.6001",
6334
6334
  dependencies: "reactstrap,tslib,react,react-dom,react-router,react-router-dom"
6335
6335
  },
6336
6336
  build: {
6337
- date: "2023-08-28T12:48:26.279Z",
6338
- cli: "1.2.0-beta.5869",
6337
+ date: "2023-09-26T21:31:31.541Z",
6338
+ cli: "1.3.0-beta.6001",
6339
6339
  compat: "1"
6340
6340
  }
6341
6341
  };
@@ -63967,8 +63967,13 @@ function compareVersions(v1, v2) {
63967
63967
  var s2 = splitVersion(v2);
63968
63968
  var len = Math.max(s1.length - 1, s2.length - 1);
63969
63969
  for (var i = 0; i < len; i++) {
63970
- var n1 = parseInt(s1[i] || "0", 10);
63971
- var n2 = parseInt(s2[i] || "0", 10);
63970
+ var m1 = s1[i] || "0";
63971
+ var m2 = s2[i] || "0";
63972
+ if (m2 === "x") {
63973
+ return 0;
63974
+ }
63975
+ var n1 = parseInt(m1, 10);
63976
+ var n2 = parseInt(m2, 10);
63972
63977
  if (n1 > n2) {
63973
63978
  return 1;
63974
63979
  } else if (n2 > n1) {
@@ -65196,4 +65201,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1__.createElement(piral
65196
65201
 
65197
65202
  /******/ })()
65198
65203
  ;
65199
- //# sourceMappingURL=index.3398b8.js.map
65204
+ //# sourceMappingURL=index.e7a31b.js.map