quartz/wallet/node_modules/keccak256/Makefile
2022-03-04 20:05:23 +08:00

22 lines
296 B
Makefile

all: build
.PHONY: build
build:
@npm run build
.PHONY: test
test:
@npm test
.PHONY: lint
lint:
@standard index.js
@standard test/index.js
@standard example/example.js
.PHONY: lint-fix
lint-fix:
@standard --fix index.js
@standard --fix test/index.js
@standard --fix example/example.js