23 lines
315 B
Makefile
23 lines
315 B
Makefile
export PATH := "./node_modules/.bin:" + env_var('PATH')
|
|
|
|
install-dependencies:
|
|
yarn --ignore-engines
|
|
|
|
build:
|
|
node build.js
|
|
|
|
test: build
|
|
jest
|
|
|
|
test-only file: build
|
|
jest {{file}}
|
|
|
|
emit-types:
|
|
tsc
|
|
|
|
publish: build
|
|
emit-types
|
|
npm publish
|
|
|
|
format:
|
|
prettier --plugin-search-dir . --write .
|