From 4cea76b0cf02622c11144360e6f438af7ccbb94b Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 1 May 2017 12:43:20 +0200 Subject: [PATCH] Use npm script instead of direct webpack call Signed-off-by: Thomas Citharel --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.41.0