mirror of
https://github.com/grafana/grafana.git
synced 2025-02-03 20:21:01 -06:00
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
|