Files
orbitdb/Makefile
haad c8b1690dd9 0.16.0-beta.4
Fix dependencies.
Fix Makefile.
Fix examples.
2016-12-13 13:28:29 +01:00

20 lines
238 B
Makefile

all: build
deps:
npm install
test: deps
npm run test
build: test
npm run build
@echo "Build success!"
@echo "Output: 'dist/', 'examples/browser/'"
clean:
rm -rf orbit-db/
rm -rf ipfs/
rm -rf node_modules/
.PHONY: test build