influxdb/ui/Makefile

24 lines
377 B
Makefile
Raw Normal View History

UISOURCES := $(shell find . -type f -not \( -path ./build/\* -o -path ./node_modules/\* -o -path ./.cache/\* -o -name Makefile -prune \) )
all: build
2018-12-01 01:02:31 +00:00
node_modules: package-lock.json
npm i
build: node_modules $(UISOURCES)
2018-12-01 01:02:31 +00:00
npm run build
lint: node_modules $(UISOURCES)
2018-12-01 01:02:31 +00:00
npm run lint
test:
2018-12-01 01:02:31 +00:00
npm test
clean:
2018-12-01 01:02:31 +00:00
npm run clean
run:
2018-12-01 01:02:31 +00:00
npm start
.PHONY: all clean test run lint