mirror of
https://gitlab.com/deeplydrumming/DeemixFix.git
synced 2026-01-17 09:22:57 -03: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
|