mol_jsx_lib 0.0.704 → 0.0.705

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
@@ -1883,7 +1883,17 @@ var $;
1883
1883
  break reuse;
1884
1884
  return existen;
1885
1885
  }
1886
- return new $mol_wire_task(`${host?.[Symbol.toStringTag] ?? host}.${task.name}(#)`, task, host, args);
1886
+ const next = new $mol_wire_task(`${host?.[Symbol.toStringTag] ?? host}.${task.name}(#)`, task, host, args);
1887
+ if (existen?.temp) {
1888
+ $$.$mol_log3_warn({
1889
+ place: '$mol_wire_task',
1890
+ message: `Non idempotency`,
1891
+ existen,
1892
+ next,
1893
+ hint: 'Ignore it',
1894
+ });
1895
+ }
1896
+ return next;
1887
1897
  };
1888
1898
  }
1889
1899
  get temp() {
package/node.test.js CHANGED
@@ -1875,7 +1875,17 @@ var $;
1875
1875
  break reuse;
1876
1876
  return existen;
1877
1877
  }
1878
- return new $mol_wire_task(`${host?.[Symbol.toStringTag] ?? host}.${task.name}(#)`, task, host, args);
1878
+ const next = new $mol_wire_task(`${host?.[Symbol.toStringTag] ?? host}.${task.name}(#)`, task, host, args);
1879
+ if (existen?.temp) {
1880
+ $$.$mol_log3_warn({
1881
+ place: '$mol_wire_task',
1882
+ message: `Non idempotency`,
1883
+ existen,
1884
+ next,
1885
+ hint: 'Ignore it',
1886
+ });
1887
+ }
1888
+ return next;
1879
1889
  };
1880
1890
  }
1881
1891
  get temp() {