From 010b27f19ce45117f0629ab0bcf079dd09e66062 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gordan=20Neki=C4=87?= Date: Thu, 23 Oct 2025 22:57:37 +0200 Subject: [PATCH 1/2] fix: :memo: fix the README.md example, to match the arguments in register function as in test --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a9977ed..853d247 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ const messageChannel = new MessageChannel(); global.importMapPort = messageChannel.port1; -register("@node-loader/import-maps", { +register("@node-loader/import-maps", import.meta.url, { data: { // optional, provides a way to update the import map later on port: messageChannel.port2, From 9f528b0fba8a1093adc3ed06000fcfb3eba91ff1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gordan=20Neki=C4=87?= Date: Fri, 24 Oct 2025 22:50:31 +0200 Subject: [PATCH 2/2] chore: :memo: update changelog --- .changelog/02.txt | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .changelog/02.txt diff --git a/.changelog/02.txt b/.changelog/02.txt new file mode 100644 index 0000000..397b0c0 --- /dev/null +++ b/.changelog/02.txt @@ -0,0 +1,2 @@ +fix +Fix the README.md example