Clean UMD
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 4s

This commit is contained in:
2026-05-03 22:11:23 +02:00
parent 820d55b012
commit 39a67b94fc
10 changed files with 33 additions and 40 deletions

View File

@@ -99,9 +99,8 @@
return fn();
} finally {
batchDepth--;
if (batchDepth === 0 && effectQueue.size > 0 && !isFlushing) {
if (batchDepth === 0 && effectQueue.size > 0 && !isFlushing)
flush();
}
}
};
var trackUpdate = (subs, trigger = false) => {
@@ -515,12 +514,14 @@
MOUNTED_NODES.set(t, inst);
return inst;
};
// sigpro_IIFE.js
if (typeof window !== "undefined") {
Object.assign(window, { $, $$, watch, h, Fragment, when, each, router, mount, batch, onUnmount, isArr, isFunc, isObj });
"a abbr article aside audio b blockquote br button canvas caption cite code col colgroup datalist dd del details dfn dialog div dl dt em embed fieldset figcaption figure footer form h1 h2 h3 h4 h5 h6 header hr i iframe img input ins kbd label legend li main mark meter nav object ol optgroup option output p picture pre progress section select slot small source span strong sub summary sup svg table tbody td template textarea tfoot th thead time tr u ul video".split(" ").forEach((tag) => {
window[tag] = (props, children) => h(tag, props, children);
});
}
// sigpro_umd.js
if (typeof window !== "undefined") {
Object.assign(window, { $, $$, watch, h, Fragment, when, each, router, mount, batch, onUnmount, isArr, isFunc, isObj });
}
})();