From a3f597a5d39baeabff948d1cd13cfc3915fc4980 Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Thu, 31 Oct 2024 18:10:57 -0400 Subject: Ensure Justfile installs correct prettier version Previously if you cloned the repo and ran `just format`, npx would fetch the latest version of prettier temporarily. Now we run `npm install` first via get_dependencies. --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Justfile') diff --git a/Justfile b/Justfile index db39c05..8a53c98 100644 --- a/Justfile +++ b/Justfile @@ -10,7 +10,7 @@ run: build get_dependencies: npm install --include=dev --fund=false -format: +format: get_dependencies npx prettier . --write clean: -- cgit v1.2.3-57-g22cb