aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBen Woodward <ben@bdw.to>2021-07-15 14:44:00 -0700
committerGitHub <noreply@github.com>2021-07-15 14:44:00 -0700
commitf82c096aeb6970bed54eb6e5424ba303965ef252 (patch)
tree85f257e64c90e00754d3f476e8e6d61bd01625d6 /Makefile
parentc6fb2f011505a3e1892e1fb24f4df850c55bb57d (diff)
Only run Prettier on ./src (#55)
* Move base stylesheet input public * Only run prettier on ./src
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 28b8537..1a0dd78 100644
--- a/Makefile
+++ b/Makefile
@@ -16,11 +16,11 @@ dev:
16 16
17.PHONY: fmt 17.PHONY: fmt
18fmt: 18fmt:
19 npx prettier --check . '!**/*.min.{css,js}' 19 npx prettier --check ./src
20 20
21.PHONY: fmt.write 21.PHONY: fmt.write
22fmt.write: 22fmt.write:
23 npx prettier --write . '!**/*.min.{css,js}' 23 npx prettier --write ./src
24 24
25.PHONY: run 25.PHONY: run
26run: 26run: