diff --git a/bin/install-services b/bin/install-services index 6f2d17e5b7..becf174cc1 100755 --- a/bin/install-services +++ b/bin/install-services @@ -8,7 +8,15 @@ grep 'name:' config/services.js | \ do pushd $service echo "Installing service $service" - npm ci + case $service in + web) + # install webpack and friends from dev-dependencies. + npm ci + ;; + *) + npm ci --only=production + ;; + esac popd done