Ver código fonte

Uses lib-jitsi-meet from git repo and deploy it on make.

master
damencho 9 anos atrás
pai
commit
e3b518cb91
4 arquivos alterados com 6 adições e 31786 exclusões
  1. 1
    0
      .gitignore
  2. 4
    1
      Makefile
  3. 0
    31780
      libs/lib-jitsi-meet.js
  4. 1
    5
      package.json

+ 1
- 0
.gitignore Ver arquivo

@@ -5,5 +5,6 @@ node_modules
5 5
 .*.tmp
6 6
 deploy-local.sh
7 7
 libs/app.bundle.*
8
+libs/lib-jitsi-meet*
8 9
 all.css
9 10
 .remote-sync.json

+ 4
- 1
Makefile Ver arquivo

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

+ 0
- 31780
libs/lib-jitsi-meet.js
Diferenças do arquivo suprimidas por serem muito extensas
Ver arquivo


+ 1
- 5
package.json Ver arquivo

@@ -23,14 +23,10 @@
23 23
     "i18next-client": "1.7.7",
24 24
     "jquery": "~2.1.1",
25 25
     "jQuery-Impromptu": "git+https://github.com/trentrichardson/jQuery-Impromptu.git#v6.0.0",
26
+    "lib-jitsi-meet": "jitsi/lib-jitsi-meet",
26 27
     "jquery-ui": "^1.10.5",
27 28
     "jssha": "1.5.0",
28
-    "pako": "*",
29 29
     "retry": "0.6.1",
30
-    "sdp-interop": "0.1.11",
31
-    "sdp-simulcast": "0.1.4",
32
-    "sdp-transform": "1.5.*",
33
-    "socket.io-client": "1.3.6",
34 30
     "strophe": "^1.2.2",
35 31
     "strophejs-plugins": "^0.0.6",
36 32
     "toastr": "^2.0.3"

Carregando…
Cancelar
Salvar