From d988d710d0eb0c74c7bf00fa394e0c1505ea228e Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Mon, 15 Jul 2024 14:43:36 +0100 Subject: [PATCH] [js] Use tsx for plugin postinstall --- desktop/plugins/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/plugins/package.json b/desktop/plugins/package.json index cb40f1649c6..fcb8107c947 100644 --- a/desktop/plugins/package.json +++ b/desktop/plugins/package.json @@ -24,6 +24,6 @@ "react-dom": "*" }, "scripts": { - "postinstall": "cd .. && ./ts-node ./plugins/postinstall.tsx" + "postinstall": "cd .. && tsx ./plugins/postinstall.tsx" } }