16 lines
377 B
Bash
Executable File
16 lines
377 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
echo "=> Update translation files"
|
|
npm run update-translations
|
|
|
|
echo "=> Create timezones.js"
|
|
./scripts/createTimezones.js ./public/js/timezones.js
|
|
|
|
echo "=> Build theme.css"
|
|
./node_modules/.bin/sass -I node_modules/bootstrap-sass/assets/stylesheets/ ./src/theme.scss ./public/theme.css
|
|
|
|
echo "=> Build the dashboard apps"
|
|
./node_modules/.bin/vite build
|