tutuca 0.9.44 → 0.9.45

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/tutuca.js CHANGED
@@ -7822,6 +7822,9 @@ var macro = (defaults, rawView) => new Macro(defaults, rawView);
7822
7822
  function check(_app) {
7823
7823
  return { error: 0, warn: 0, hint: 0, dummyCheck: true };
7824
7824
  }
7825
+ async function test(_opts) {
7826
+ return null;
7827
+ }
7825
7828
  function tutuca(nodeOrSelector) {
7826
7829
  const rootNode = typeof nodeOrSelector === "string" ? document.querySelector(nodeOrSelector) : nodeOrSelector;
7827
7830
  const comps = new Components;
@@ -7833,6 +7836,7 @@ export {
7833
7836
  updateIn$1 as updateIn,
7834
7837
  update$1 as update,
7835
7838
  tutuca,
7839
+ test,
7836
7840
  setIn$1 as setIn,
7837
7841
  set,
7838
7842
  removeIn,