From 5a121f8d7c1f9ec8f6da4326830e09bf849bedd8 Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Sat, 21 May 2022 13:06:27 -0500 Subject: [PATCH] added makefile --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f92eaa0 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +LOG_INFO=$(shell date +"%H:%M:%S") \e[0;34mINFO\e[0m +LOG_ERROR=$(shell date +"%H:%M:%S") \e[1;31mERROR\e[0m +LOG_WARNING=$(shell date +"%H:%M:%S") \e[0;33mWARNING\e[0m +LOG_SUCCESS=$(shell date +"%H:%M:%S") \e[0;32mSUCCESS\e[0m + + +.DEFAULT_GOAL := publish + +publish: + @echo -e "$(LOG_INFO) Publishing to NPM..." + @npm publish --access public