added makefile
This commit is contained in:
parent
ba9943cb34
commit
5a121f8d7c
1 changed files with 11 additions and 0 deletions
11
Makefile
Normal file
11
Makefile
Normal file
|
@ -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
|
Loading…
Reference in a new issue