From: Thomas Citharel Date: Mon, 1 May 2017 10:43:20 +0000 (+0200) Subject: Use npm script instead of direct webpack call X-Git-Tag: 2.3.0~31^2~104^2~7 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=4cea76b0cf02622c11144360e6f438af7ccbb94b;hp=42a2139b8f5cdda5bd0d79cb808b4ff414e95a5b;p=github%2Fwallabag%2Fwallabag.git Use npm script instead of direct webpack call Signed-off-by: Thomas Citharel --- diff --git a/.travis.yml b/.travis.yml index dea3da4a..d7c28388 100644 --- a/.travis.yml +++ b/.travis.yml @@ -73,4 +73,4 @@ script: - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml src/Wallabag/CoreBundle/Resources/translations -v ; fi; - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml app/Resources/CraueConfigBundle/translations -v ; fi; - if [[ $VALIDATE_TRANSLATION_FILE = run ]]; then php bin/console lint:yaml src/Wallabag/UserBundle/Resources/translations -v ; fi; - - if [[ $ASSETS = build ]]; then ./node_modules/webpack/bin/webpack.js; fi; + - if [[ $ASSETS = build ]]; then yarn run build:prod; fi;