mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-19 02:48:30 +08:00
17 lines
189 B
Makefile
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 $(*)
|
|
|