mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
d5932760d9
* baldm0mma/rem_oneshell_feat/ remove reliance on oneshell multiline feature * Update docs/Makefile update whitespace Co-authored-by: Jack Baldry <jack.baldry@grafana.com> --------- Co-authored-by: Jack Baldry <jack.baldry@grafana.com>
16 lines
634 B
Makefile
16 lines
634 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.
|
|
sources/panels-visualizations/query-transform-data/transform-data/index.md:
|
|
cd $(CURDIR)/.. && npx tsc ./scripts/docs/generate-transformations.ts && \
|
|
node ./scripts/docs/generate-transformations.js > $(CURDIR)/$@ && \
|
|
npx prettier -w $(CURDIR)/$@
|