Files
cellxgene/client/Makefile
Matt Weiden 176ea3bc91 Add auto-formatting to client and server modules
One thing that can make linting faster is auto-formatting. This commit
adds the yapf auto-formatting tool to the server module and uses
eslint's "fix" functionality to speed up the linting/formatting process.
2019-12-19 15:19:22 -08:00

17 lines
165 B
Makefile

.PHONY: install
install:
npm install client
.PHONY: build
build: install
npm run build
.PHONY: fmt
fmt:
npm run fmt
.PHONY: clean
clean:
rm -rf node_modules