mol_jsx_lib 0.0.774 → 0.0.776

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/node.mjs CHANGED
@@ -1693,8 +1693,7 @@ var $;
1693
1693
  }
1694
1694
  }
1695
1695
  catch (e) {
1696
- console.log(e.stack);
1697
- throw e;
1696
+ throw new Error(e.stack, { cause: e });
1698
1697
  }
1699
1698
  }
1700
1699
  step() {
package/node.test.js CHANGED
@@ -1684,8 +1684,7 @@ var $;
1684
1684
  }
1685
1685
  }
1686
1686
  catch (e) {
1687
- console.log(e.stack);
1688
- throw e;
1687
+ throw new Error(e.stack, { cause: e });
1689
1688
  }
1690
1689
  }
1691
1690
  step() {