Files
SerpentRace/SerpentRace_Backend/node_modules/bcrypt/Makefile
T
2025-07-18 09:20:40 +02:00

20 lines
203 B
Makefile

TESTS = test/*.js
all: test
build: clean compile
compile:
npm install .
npm run install
test: build
@./node_modules/.bin/jest \
$(TESTS)
clean:
rm -Rf lib/bindings/
.PHONY: clean test build