mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-10-07 22:57:07 +00:00
20 lines
250 B
Makefile
20 lines
250 B
Makefile
all: build
|
|
|
|
deps:
|
|
@npm install
|
|
|
|
test: deps
|
|
@npm run test
|
|
|
|
build: deps
|
|
@npm run build
|
|
@echo "Build success!"
|
|
@echo "Output: 'dist/', 'examples/browser/'"
|
|
|
|
clean:
|
|
rm -rf orbit-db/
|
|
rm -rf ipfs/
|
|
rm -rf node_modules/
|
|
|
|
.PHONY: all deps test clean
|