|
@@ -7,6 +7,7 @@ CSS_FILES = font.css toastr.css main.css videolayout_default.css font-awesome.cs
|
7
|
7
|
DEPLOY_DIR = libs
|
8
|
8
|
BROWSERIFY_FLAGS = -d
|
9
|
9
|
OUTPUT_DIR = .
|
|
10
|
+LIBJITSIMEET_DIR = node_modules/lib-jitsi-meet/
|
10
|
11
|
|
11
|
12
|
all: update-deps compile uglify deploy clean
|
12
|
13
|
|
|
@@ -21,7 +22,9 @@ clean:
|
21
|
22
|
|
22
|
23
|
deploy:
|
23
|
24
|
mkdir -p $(DEPLOY_DIR) && \
|
24
|
|
- cp $(OUTPUT_DIR)/app.bundle.min.js $(OUTPUT_DIR)/app.bundle.min.map $(DEPLOY_DIR) && \
|
|
25
|
+ cp $(OUTPUT_DIR)/app.bundle.min.js $(OUTPUT_DIR)/app.bundle.min.map \
|
|
26
|
+ $(LIBJITSIMEET_DIR)/lib-jitsi-meet.min.js \
|
|
27
|
+ $(LIBJITSIMEET_DIR)/lib-jitsi-meet.min.map $(DEPLOY_DIR) && \
|
25
|
28
|
(cd css; cat $(CSS_FILES)) | $(CLEANCSS) > css/all.css && \
|
26
|
29
|
([ ! -x deploy-local.sh ] || ./deploy-local.sh)
|
27
|
30
|
|