mirror of
https://github.com/nbd-wtf/nostr-tools.git
synced 2025-12-08 16:28:49 +00:00
24 lines
347 B
Makefile
24 lines
347 B
Makefile
export PATH := "./node_modules/.bin:" + env_var('PATH')
|
|
|
|
install-dependencies:
|
|
yarn --ignore-engines
|
|
|
|
build:
|
|
rm -rf lib
|
|
node build.js
|
|
|
|
test: build
|
|
jest
|
|
|
|
test-only file: build
|
|
jest {{file}}
|
|
|
|
emit-types:
|
|
tsc # see tsconfig.json
|
|
|
|
publish: build emit-types
|
|
npm publish
|
|
|
|
format:
|
|
prettier --plugin-search-dir . --write .
|