Files
cellxgene/client/Makefile
2019-12-19 15:20:41 -08:00

17 lines
189 B
Makefile

.PHONY: clean
clean:
rm -rf node_modules
.PHONY: install
install:
npm install client
.PHONY: build
build:
npm run build
# pass remaining commands through to npm run
%:
npm run $(*)