mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
15 lines
187 B
Makefile
15 lines
187 B
Makefile
all:
|
|
npm -g i .
|
|
|
|
lint:
|
|
npm run-script pretest
|
|
|
|
test:
|
|
npm test
|
|
|
|
coverage: test
|
|
rm -rRf ../ycssmin-pages/*
|
|
cp -R ./coverage/lcov-report/* ../ycssmin-pages/
|
|
|
|
.PHONY: lint coverage test
|