From 56f492b9fba58be0e27d2e094ff6abeae3073a0b Mon Sep 17 00:00:00 2001 From: Simon Egersand Date: Fri, 9 Feb 2018 12:02:55 +0100 Subject: [PATCH] Add dev Make target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a03ea9439..e6a90fc44 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,11 @@ -.PHONY: all clean install test +.PHONY: all clean dev install snapshot test test-watch clean: rm -rf node_modules +dev: + npm run dev + install: npm install