15 lines
178 B
Makefile
15 lines
178 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
|
|
|
|
test:
|
|
@npm test
|
|
|
|
.PHONY: all clean docs test
|