Uses lib-jitsi-meet from git repo and deploy it on make.
This commit is contained in:
parent
c0dde18e6b
commit
e3b518cb91
|
@ -5,5 +5,6 @@ node_modules
|
|||
.*.tmp
|
||||
deploy-local.sh
|
||||
libs/app.bundle.*
|
||||
libs/lib-jitsi-meet*
|
||||
all.css
|
||||
.remote-sync.json
|
||||
|
|
5
Makefile
5
Makefile
|
@ -7,6 +7,7 @@ CSS_FILES = font.css toastr.css main.css videolayout_default.css font-awesome.cs
|
|||
DEPLOY_DIR = libs
|
||||
BROWSERIFY_FLAGS = -d
|
||||
OUTPUT_DIR = .
|
||||
LIBJITSIMEET_DIR = node_modules/lib-jitsi-meet/
|
||||
|
||||
all: update-deps compile uglify deploy clean
|
||||
|
||||
|
@ -21,7 +22,9 @@ clean:
|
|||
|
||||
deploy:
|
||||
mkdir -p $(DEPLOY_DIR) && \
|
||||
cp $(OUTPUT_DIR)/app.bundle.min.js $(OUTPUT_DIR)/app.bundle.min.map $(DEPLOY_DIR) && \
|
||||
cp $(OUTPUT_DIR)/app.bundle.min.js $(OUTPUT_DIR)/app.bundle.min.map \
|
||||
$(LIBJITSIMEET_DIR)/lib-jitsi-meet.min.js \
|
||||
$(LIBJITSIMEET_DIR)/lib-jitsi-meet.min.map $(DEPLOY_DIR) && \
|
||||
(cd css; cat $(CSS_FILES)) | $(CLEANCSS) > css/all.css && \
|
||||
([ ! -x deploy-local.sh ] || ./deploy-local.sh)
|
||||
|
||||
|
|
31780
libs/lib-jitsi-meet.js
31780
libs/lib-jitsi-meet.js
File diff suppressed because it is too large
Load Diff
|
@ -23,14 +23,10 @@
|
|||
"i18next-client": "1.7.7",
|
||||
"jquery": "~2.1.1",
|
||||
"jQuery-Impromptu": "git+https://github.com/trentrichardson/jQuery-Impromptu.git#v6.0.0",
|
||||
"lib-jitsi-meet": "jitsi/lib-jitsi-meet",
|
||||
"jquery-ui": "^1.10.5",
|
||||
"jssha": "1.5.0",
|
||||
"pako": "*",
|
||||
"retry": "0.6.1",
|
||||
"sdp-interop": "0.1.11",
|
||||
"sdp-simulcast": "0.1.4",
|
||||
"sdp-transform": "1.5.*",
|
||||
"socket.io-client": "1.3.6",
|
||||
"strophe": "^1.2.2",
|
||||
"strophejs-plugins": "^0.0.6",
|
||||
"toastr": "^2.0.3"
|
||||
|
|
Loading…
Reference in New Issue