From f9b00c3dfac0c94d365e050fdb5e73610cc217ad Mon Sep 17 00:00:00 2001 From: Miguel Serrano Date: Wed, 23 Oct 2019 10:20:39 +0200 Subject: [PATCH] Added webpack compilation scripts (#651) --- bin/compile-services | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/compile-services b/bin/compile-services index 1c508ae693..ba490c5bea 100755 --- a/bin/compile-services +++ b/bin/compile-services @@ -11,7 +11,8 @@ grep 'name:' config/services.js | \ case $service in web) make compile_full - WEBPACK_ENV=production make minify + make minify + npm run webpack:production ;; chat) echo "$service doesn't require a compilation"