Files
linea-monorepo/contracts/Makefile
2024-09-20 14:42:03 +02:00

33 lines
443 B
Makefile

.PHONY: test coverage
compile:
pnpm run build
force-compile: export TS_NODE_TRANSPILE_ONLY := 1
force-compile:
npx hardhat compile --force
clean:
rm -rf coverage/
rm -rf build/
rm -rf cache/
fmt:
pnpm run lint
fmt-fix:
pnpm run lint:fix
test: export SKIP_DEPLOY_LOG := true
test:
pnpm test -- --parallel
coverage: export SKIP_DEPLOY_LOG := true
coverage:
pnpm run coverage
clean-fmt-test:
make clean
make fmt-fix
make test