|
@@ -16,8 +16,11 @@ IFRAME_API_DIR = ./modules/API/external
|
16
|
16
|
|
17
|
17
|
all: update-deps compile compile-iframe-api uglify uglify-iframe-api deploy clean
|
18
|
18
|
|
|
19
|
+# FIXME: there is a problem with node-sass not correctly installed (compiled)
|
|
20
|
+# a quick fix to make sure it is installed on every update
|
|
21
|
+# the problem appears on linux and not on macosx
|
19
|
22
|
update-deps:
|
20
|
|
- $(NPM) update
|
|
23
|
+ $(NPM) update && $(NPM) install node-sass
|
21
|
24
|
|
22
|
25
|
compile:
|
23
|
26
|
$(BROWSERIFY) $(BROWSERIFY_FLAGS) -e app.js -s APP | $(EXORCIST) $(OUTPUT_DIR)/app.bundle.js.map > $(OUTPUT_DIR)/app.bundle.js
|