Don't call npm install
with --only=prod
This commit is contained in:
parent
fb47f5606a
commit
75ce300332
@ -10,13 +10,13 @@ do
|
|||||||
cp "../production/mempool-config.${site}.json" "mempool-config.json"
|
cp "../production/mempool-config.${site}.json" "mempool-config.json"
|
||||||
touch cache.json
|
touch cache.json
|
||||||
|
|
||||||
npm install --only=prod
|
npm install
|
||||||
npm run build
|
npm run build
|
||||||
|
|
||||||
if [ "${site}" = "mainnet" ]
|
if [ "${site}" = "mainnet" ]
|
||||||
then
|
then
|
||||||
cd "${HOME}/${site}/frontend/"
|
cd "${HOME}/${site}/frontend/"
|
||||||
npm install --only=prod
|
npm install
|
||||||
npm run build
|
npm run build
|
||||||
rsync -av ./dist/mempool/* "${HOME}/public_html/${site}/"
|
rsync -av ./dist/mempool/* "${HOME}/public_html/${site}/"
|
||||||
fi
|
fi
|
||||||
|
@ -34,13 +34,13 @@ do
|
|||||||
if [ "${site}" = "mainnet" ]
|
if [ "${site}" = "mainnet" ]
|
||||||
then
|
then
|
||||||
cd "$HOME/${site}/frontend"
|
cd "$HOME/${site}/frontend"
|
||||||
npm install --only=prod
|
npm install
|
||||||
npm run build
|
npm run build
|
||||||
rsync -av ./dist/mempool/* "${HOME}/public_html/${site}/"
|
rsync -av ./dist/mempool/* "${HOME}/public_html/${site}/"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd "$HOME/${site}/backend"
|
cd "$HOME/${site}/backend"
|
||||||
npm install --only=prod
|
npm install
|
||||||
npm run build
|
npm run build
|
||||||
done
|
done
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user