Browse Source

Merge pull request #852 from jitsi/make-node-sass

Installs node-sass on every update, fixes a problem in some operating…
master
hristoterezov 8 years ago
parent
commit
99ca38d13f
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      Makefile

+ 4
- 1
Makefile View File

@@ -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

Loading…
Cancel
Save