Do not distribute unminimized artifacts
The build process is capable of bundling both minimized and unminimized artifacts for lib-jitsi-meet, jitsi-meet and external_api. However, there does not seem to be a good reason to (1) always wait for the building of the two versions and (2) distributing the unminimized artifacts.
This commit is contained in:
parent
f6662745d1
commit
ce3090b8fe
7
Makefile
7
Makefile
|
@ -20,7 +20,6 @@ update-deps:
|
||||||
$(NPM) update && $(NPM) install node-sass
|
$(NPM) update && $(NPM) install node-sass
|
||||||
|
|
||||||
compile:
|
compile:
|
||||||
$(WEBPACK)
|
|
||||||
$(WEBPACK) -p
|
$(WEBPACK) -p
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
@ -33,12 +32,8 @@ deploy-init:
|
||||||
|
|
||||||
deploy-appbundle:
|
deploy-appbundle:
|
||||||
cp \
|
cp \
|
||||||
$(BUILD_DIR)/app.bundle.js \
|
|
||||||
$(BUILD_DIR)/app.bundle.js.map \
|
|
||||||
$(BUILD_DIR)/app.bundle.min.js \
|
$(BUILD_DIR)/app.bundle.min.js \
|
||||||
$(BUILD_DIR)/app.bundle.min.map \
|
$(BUILD_DIR)/app.bundle.min.map \
|
||||||
$(BUILD_DIR)/external_api.js \
|
|
||||||
$(BUILD_DIR)/external_api.js.map \
|
|
||||||
$(BUILD_DIR)/external_api.min.js \
|
$(BUILD_DIR)/external_api.min.js \
|
||||||
$(BUILD_DIR)/external_api.min.map \
|
$(BUILD_DIR)/external_api.min.map \
|
||||||
$(OUTPUT_DIR)/analytics.js \
|
$(OUTPUT_DIR)/analytics.js \
|
||||||
|
@ -46,8 +41,6 @@ deploy-appbundle:
|
||||||
|
|
||||||
deploy-lib-jitsi-meet:
|
deploy-lib-jitsi-meet:
|
||||||
cp \
|
cp \
|
||||||
$(LIBJITSIMEET_DIR)/lib-jitsi-meet.js \
|
|
||||||
$(LIBJITSIMEET_DIR)/lib-jitsi-meet.js.map \
|
|
||||||
$(LIBJITSIMEET_DIR)/lib-jitsi-meet.min.js \
|
$(LIBJITSIMEET_DIR)/lib-jitsi-meet.min.js \
|
||||||
$(LIBJITSIMEET_DIR)/lib-jitsi-meet.min.map \
|
$(LIBJITSIMEET_DIR)/lib-jitsi-meet.min.map \
|
||||||
$(LIBJITSIMEET_DIR)/connection_optimization/external_connect.js \
|
$(LIBJITSIMEET_DIR)/connection_optimization/external_connect.js \
|
||||||
|
|
Loading…
Reference in New Issue