Add makefile - this commit is dedicated to @jbenet

This commit is contained in:
haad 2016-11-25 12:43:39 +01:00
parent 799473eb86
commit 97a07cad65

19
Makefile Normal file
View File

@ -0,0 +1,19 @@
all: deps test build
deps:
@npm install
test:
@npm run test
build:
@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