helpyourneighbour/node_modules/bcrypt/Makefile
2026-03-19 23:07:24 +00:00

19 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