@powerformer/refly-cli 0.1.24 → 0.1.25

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/bin/refly.js CHANGED
@@ -5247,7 +5247,10 @@ var OutputFormatter = class {
5247
5247
  */
5248
5248
  sanitizeJsonReplacer = (_key, value) => {
5249
5249
  if (typeof value === "string") {
5250
- return value.replace(/[\x00-\x08\x0B\x0C\x0E-\x1F]/g, "");
5250
+ return value.split("").filter((char) => {
5251
+ const code = char.charCodeAt(0);
5252
+ return code >= 32 || code === 9 || code === 10 || code === 13;
5253
+ }).join("");
5251
5254
  }
5252
5255
  return value;
5253
5256
  };
@@ -11753,7 +11756,7 @@ var import_node_child_process6 = require("child_process");
11753
11756
  var import_node_fs5 = __toESM(require("fs"));
11754
11757
  init_logger();
11755
11758
  init_paths();
11756
- var CLI_VERSION = "0.1.24";
11759
+ var CLI_VERSION = "0.1.25";
11757
11760
  var NPM_TAG = "latest";
11758
11761
  function compareSemver(a, b) {
11759
11762
  const parseVersion = (v) => {