From e138d6f0db3987f9f881e50fe9017d5c029a1fbf Mon Sep 17 00:00:00 2001 From: Tom Gallacher Date: Tue, 3 Jan 2017 17:35:24 +0000 Subject: [PATCH] Add missing Makefile rule for production installs --- frontend/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/Makefile b/frontend/Makefile index f86c9295..5637a763 100644 --- a/frontend/Makefile +++ b/frontend/Makefile @@ -5,6 +5,10 @@ AVA := $(bindir)/ava NYC := $(bindir)/nyc UI := $(shell pwd)/../ui +.PHONY: install-production +install-production: + yarn install --prefer-offline + .PHONY: install install: yarn install --prefer-offline