From bfc174ffdc66051a4123510dd8034219d550edcf Mon Sep 17 00:00:00 2001 From: damencho Date: Mon, 12 Sep 2016 12:02:43 -0500 Subject: [PATCH] Installs node-sass on every update, fixes a problem in some operating systems. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c53f325e9..065b02449 100644 --- a/Makefile +++ b/Makefile @@ -16,8 +16,11 @@ IFRAME_API_DIR = ./modules/API/external all: update-deps compile compile-iframe-api uglify uglify-iframe-api deploy clean +# FIXME: there is a problem with node-sass not correctly installed (compiled) +# a quick fix to make sure it is installed on every update +# the problem appears on linux and not on macosx update-deps: - $(NPM) update + $(NPM) update && $(NPM) install node-sass compile: $(BROWSERIFY) $(BROWSERIFY_FLAGS) -e app.js -s APP | $(EXORCIST) $(OUTPUT_DIR)/app.bundle.js.map > $(OUTPUT_DIR)/app.bundle.js