From ca12938fb0aa444aef9be194b2ccad3fc291e149 Mon Sep 17 00:00:00 2001 From: Imbus Date: Thu, 14 Dec 2023 20:03:01 +0100 Subject: [PATCH] Slight justfile refactor --- Justfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Justfile b/Justfile index c9bb667..ecf81d3 100644 --- a/Justfile +++ b/Justfile @@ -1,10 +1,11 @@ -dev: - npm install +dev: npm-install npx expo start -p 8080 +npm-install: + npm install + clean: rm -rf node_modules .expo -lint: - npm install +lint: npm-install npm run lint \ No newline at end of file