From fd0bbaabc0f3b70e5664bec9c9389d8f1301b718 Mon Sep 17 00:00:00 2001 From: Kara Erickson Date: Fri, 2 Feb 2024 14:32:09 -0800 Subject: [PATCH] add new svelte 4+ detection method As of Svelte 4, there is a window.__svelte object that can be used to detect Svelte usage. This commit adds it to the list of detection methods. --- src/technologies/s.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/technologies/s.json b/src/technologies/s.json index 73151c029..b4d2800fc 100644 --- a/src/technologies/s.json +++ b/src/technologies/s.json @@ -6927,6 +6927,9 @@ "description": "Svelte is a free and open-source front end compiler created by Rich Harris and maintained by the Svelte core team members.", "dom": "[class*='svelte-']", "icon": "Svelte.svg", + "js": { + "__svelte": "" + }, "oss": true, "website": "https://svelte.dev" },