From eca526ce9105283814e5b5478b7ec48eacfee50b Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Mon, 15 Jul 2024 18:49:50 +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..17e88b95e4e 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 .. && ./node_modules/.bin/tsx ./plugins/postinstall.tsx" } }