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