NODE ?= node
NPM ?= npm

all: build

build:
	@$(NPM) install
	@$(NPM) run compile
