mirror of
https://gitlab.com/RemixDev/deemix-gui.git
synced 2025-01-01 12:46:07 +00:00
11 lines
134 B
Makefile
11 lines
134 B
Makefile
NODE_BIN ?= .\node_modules\.bin
|
|
|
|
lint:
|
|
$(NODE_BIN)\eslint ./src/** --fix
|
|
|
|
test:
|
|
$(NODE_BIN)\jest
|
|
|
|
build: lint test
|
|
$(NODE_BIN)\tsc
|