From c05cc839f15c607b7cd5839ed1a746997516f58c Mon Sep 17 00:00:00 2001 From: David May <1301201+wass3r@users.noreply.github.com> Date: Fri, 20 Dec 2019 20:56:21 +0000 Subject: [PATCH] build(make): change order of clean cmds (#60) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b79bc1405..932dacbca 100644 --- a/Makefile +++ b/Makefile @@ -38,8 +38,8 @@ compose-down: .PHONY: clean clean: @echo "cleaning crew, coming through..." - @rm -rf ./{elm-stuff,node_modules} @npm run clean + @rm -rf ./{elm-stuff,node_modules} @echo "nice and shiny; don't forget to run 'npm install'" .PHONY: build @@ -57,4 +57,4 @@ test: .PHONY: format format: - @elm-format --yes src/ tests/ \ No newline at end of file + @elm-format --yes src/ tests/