mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
21 lines
294 B
Bash
Executable file
21 lines
294 B
Bash
Executable file
#! env bash
|
|
|
|
set -e
|
|
|
|
node ./config/services.js | \
|
|
while read service
|
|
do
|
|
pushd $service
|
|
echo "Installing service $service"
|
|
case $service in
|
|
web)
|
|
# install webpack and friends from dev-dependencies.
|
|
npm ci
|
|
;;
|
|
*)
|
|
npm ci --only=production
|
|
;;
|
|
esac
|
|
popd
|
|
done
|
|
|