From 2d97d7d11772419c4f7ed1cd362f7dd06be74795 Mon Sep 17 00:00:00 2001 From: natxocc Date: Sun, 26 Apr 2026 16:03:07 +0200 Subject: [PATCH] Actualizar docs/README.md --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index 790741e..ca71849 100644 --- a/docs/README.md +++ b/docs/README.md @@ -35,7 +35,7 @@ mount(() => div([ button({ onclick: () => count(count()+1) }, count) ]), '#app') </script>

🔧 ESM + Global injection: If you want the global helpers but still use type="module", call sigpro().

<script type="module">
-import { sigpro } from 'https://cdn.jsdelivr.net/npm/sigpro@1.2.19/+esm';
+import { sigpro } from 'https://cdn.jsdelivr.net/npm/sigpro@latest/+esm';
 sigpro();   // now $, div, button, etc. are global
 </script>