The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/emails/Makefile

18 lines
324 B

build: clean build-mjml build-grunt
clean:
rm -rf dist/
mkdir dist/
build-mjml:
npx mjml \
--config.beautify true \
--config.minify false \
--config.validationLevel=strict \
--config.keepComments=false \
./templates/*.mjml --output ./dist/
build-grunt:
npx grunt
.PHONY: clean build build-mjml build-grunt