Files
nostr-tools/justfile
2023-02-08 14:15:54 -03:00

20 lines
325 B
Makefile

export PATH := "./node_modules/.bin:" + env_var('PATH')
install-dependencies:
yarn --ignore-engines
deps-installed := `ls node_modules`
install-and-build:
if deps-installed != "node_modules" { install-dependencies }
build
build:
node build.js
test: build
jest
testOnly file: build
jest {{file}}