mirror of
https://github.com/grafana/grafana.git
synced 2025-07-24 02:52:16 +08:00

* Added variables section * Updated transformations file and Makefile * Finished Dashboard variables in transformations section
15 lines
492 B
Makefile
15 lines
492 B
Makefile
.ONESHELL:
|
|
.DELETE_ON_ERROR:
|
|
export SHELL := bash
|
|
export SHELLOPTS := pipefail:errexit
|
|
MAKEFLAGS += --warn-undefined-variables
|
|
MAKEFLAGS += --no-builtin-rule
|
|
|
|
include docs.mk
|
|
|
|
.PHONY: sources/panels-visualizations/query-transform-data/transform-data/index.md
|
|
sources/panels-visualizations/query-transform-data/transform-data/index.md: ## Generate the Transform Data page source.
|
|
cd $(CURDIR)/.. && \
|
|
npx tsx ./scripts/docs/generate-transformations.ts && \
|
|
npx prettier -w $(CURDIR)/$@
|