Files
nostr-tools/justfile
2023-08-31 13:14:16 -05:00

26 lines
394 B
Makefile

export PATH := "./node_modules/.bin:" + env_var('PATH')
install-dependencies:
yarn --ignore-engines
build:
rm -rf lib
node build.js
test:
jest
test-only file:
jest {{file}}
emit-types:
tsc # see tsconfig.json
publish: build emit-types
npm publish
format:
prettier --plugin-search-dir . --write .
format-check:
prettier --plugin-search-dir . --check .