grafana/emails/Makefile
Gilles De Mey ea27eca147
Email: Use MJML email templates (#57751)
Co-authored-by: Santiago <santiagohernandez.1997@gmail.com>
2022-11-17 21:41:46 +01:00

15 lines
281 B
Makefile

build: build-html build-txt
build-html:
npx mjml \
--config.beautify true \
--config.minify false \
--config.validationLevel=strict \
--config.keepComments=false \
./templates/*.mjml --output ../public/emails/
build-txt:
npx grunt
.PHONY: build build-html build-txt