Merge pull request #689 from bgrozev/makefile-improvements
Makefile improvements
This commit is contained in:
commit
10b2746a3e
5
Makefile
5
Makefile
|
@ -12,7 +12,7 @@ LIBJITSIMEET_DIR = node_modules/lib-jitsi-meet/
|
|||
all: update-deps compile uglify deploy clean
|
||||
|
||||
update-deps:
|
||||
$(NPM) update
|
||||
$(NPM) install
|
||||
|
||||
compile:
|
||||
$(BROWSERIFY) $(BROWSERIFY_FLAGS) -e app.js -s APP | $(EXORCIST) $(OUTPUT_DIR)/app.bundle.js.map > $(OUTPUT_DIR)/app.bundle.js
|
||||
|
@ -27,13 +27,14 @@ deploy-init:
|
|||
|
||||
deploy-appbundle:
|
||||
cp $(OUTPUT_DIR)/app.bundle.min.js $(OUTPUT_DIR)/app.bundle.min.map \
|
||||
$(OUTPUT_DIR)/app.bundle.js \
|
||||
$(OUTPUT_DIR)/app.bundle.js $(OUTPUT_DIR)/app.bundle.js.map \
|
||||
$(DEPLOY_DIR)
|
||||
|
||||
deploy-lib-jitsi-meet:
|
||||
cp $(LIBJITSIMEET_DIR)/lib-jitsi-meet.min.js \
|
||||
$(LIBJITSIMEET_DIR)/lib-jitsi-meet.min.map \
|
||||
$(LIBJITSIMEET_DIR)/lib-jitsi-meet.js \
|
||||
$(LIBJITSIMEET_DIR)/lib-jitsi-meet.js.map \
|
||||
$(LIBJITSIMEET_DIR)/connection_optimization/external_connect.js \
|
||||
$(DEPLOY_DIR)
|
||||
deploy-css:
|
||||
|
|
Loading…
Reference in New Issue