From 77754a970d6ae3aaaf80124914418fae857e288b Mon Sep 17 00:00:00 2001 From: Luis Finke Date: Fri, 30 Dec 2022 18:39:44 -0500 Subject: [PATCH] use prepare script for installing python modules --- package.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 59ab4b0..2f989c3 100644 --- a/package.json +++ b/package.json @@ -3,9 +3,8 @@ "version": "0.0.1", "description": "A template to quickly create decky plugins from scratch, based on TypeScript and webpack", "scripts": { - "pip_install": "if [ -f requirements.txt ]; then\n\tpip install -U -r requirements.txt -t py_modules\nfi", - "build_frontend": "shx rm -rf dist && rollup -c", - "build": "pnpm run pipinstall && pnpm run build_frontend", + "prepare": "if [ -f requirements.txt ]; then\n\tpip install -U -r requirements.txt -t py_modules\nfi", + "build": "shx rm -rf dist && rollup -c", "watch": "rollup -c -w", "test": "echo \"Error: no test specified\" && exit 1" },