mirror of
https://github.com/nbd-wtf/nostr-tools.git
synced 2025-12-08 16:28:49 +00:00
20 lines
325 B
Makefile
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}}
|