18 lines
205 B
Makefile
18 lines
205 B
Makefile
all:
|
|
@npm run webpack
|
|
@cp -f lib/workers/worker-browser.js browser/bcoin-worker.js
|
|
|
|
clean:
|
|
@npm run clean
|
|
|
|
docs:
|
|
@npm run docs
|
|
|
|
lint:
|
|
@npm run lint
|
|
|
|
test:
|
|
@npm test
|
|
|
|
.PHONY: all clean docs lint test
|