MapComplete/scripts/build.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.7 KiB
Bash
Raw Normal View History

#! /usr/bin/env bash
2022-01-08 19:15:56 +01:00
echo "Starting build"
# The build script; we build the application step by step as building everything at once takes too much RAM
# Should be run from the repository root
2022-01-08 19:15:56 +01:00
# This is the main deployment script
rm -rf dist/*
rm -rf .cache
mkdir dist 2> /dev/null
2021-12-22 02:10:02 +01:00
mkdir dist/assets 2> /dev/null
2022-01-08 22:11:24 +01:00
# This script ends every line with '&&' to chain everything. A failure will thus stop the build
2022-07-06 16:35:14 +02:00
npm run generate:editor-layer-index &&
2022-01-08 22:11:24 +01:00
npm run generate &&
2022-07-18 15:15:48 +02:00
npm run generate:translations &&
2022-01-08 22:11:24 +01:00
npm run test &&
2022-10-28 04:03:34 +02:00
npm run generate:layeroverview &&
npm run generate:layouts
2022-01-11 10:55:17 +01:00
if [ $? -ne 0 ]; then
echo "ERROR - stopping the build"
2022-01-08 22:11:24 +01:00
exit 1
fi
2022-01-08 19:15:56 +01:00
# Copy the layer files, as these might contain assets (e.g. svgs)
cp -r assets/layers/ dist/assets/layers/
cp -r assets/themes/ dist/assets/themes/
cp -r assets/svg/ dist/assets/svg/
cp -r assets/templates/ dist/assets/templates/
2022-06-20 10:59:23 +02:00
cp -r assets/tagRenderings/ dist/assets/tagRenderings/
cp assets/*.png dist/assets/
cp assets/*.svg dist/assets/
2022-01-14 02:24:04 +01:00
echo -e "\n\n Building non-theme pages"
echo -e " ==========================\n\n"
vite build "index.html" "404.html" "professional.html" "automaton.html" "import_helper.html" "import_viewer.html" "land.html" "customGenerator.html" "theme.html" vendor
if [ $? -ne 0 ]; then
echo "ERROR - stopping the build"
exit 1
fi
echo -e "\n\n Building theme pages"
echo -e " ======================\n\n"
2022-06-28 03:20:22 +02:00
for file in index_*.ts
do
theme=${file:6:-3}
echo -e "\n\n $theme"
echo -e " ------------ \n\n"
# Builds the necessary files for just one theme, e.g. 'bookcases.html' + 'index_bookcases.ts' + supporting file
vite build './' "$theme.html"
if [ $? -ne 0 ]; then
echo "ERROR - stopping the build"
exit 1
fi
2021-12-23 14:37:17 +01:00
done