From 1088cb49a9b7e08e2ed712d5e661ad0267b645c7 Mon Sep 17 00:00:00 2001 From: Jeff Triplett Date: Sat, 4 Jul 2020 11:47:20 -0500 Subject: [PATCH] :hammer: Adds a few tools via Make to make project updates easier - alex - Alex can be problematic, but it can also catch a few valid insensitive mistakes people make - doctoc - makes keeping our TOC update to much easier than without it --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6a7d976 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +build: toc + +.PHONY: alex +alex: + npx alex README.md + +.PHONY: toc +toc: + npx doctoc README.md