mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
ea27eca147
Co-authored-by: Santiago <santiagohernandez.1997@gmail.com>
15 lines
281 B
Makefile
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
|