aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 3ac82a2..28b8537 100644
--- a/Makefile
+++ b/Makefile
@@ -14,6 +14,14 @@ dev:
14 yarn 14 yarn
15 yarn start 15 yarn start
16 16
17.PHONY: fmt
18fmt:
19 npx prettier --check . '!**/*.min.{css,js}'
20
21.PHONY: fmt.write
22fmt.write:
23 npx prettier --write . '!**/*.min.{css,js}'
24
17.PHONY: run 25.PHONY: run
18run: 26run:
19 docker run --rm -p 8080:80 $(TAG_LATEST) 27 docker run --rm -p 8080:80 $(TAG_LATEST)