#!/usr/bin/make -f

.PHONY: css styleguide

init:
	npm install

css:
	node_modules/.bin/gulp styles:production

styleguide:
	node_modules/.bin/gulp styleguide
