2020-06-14 15:51:20 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2020-11-12 06:14:15 +01:00
|
|
|
[ -d "/sites" ] && exit 1;
|
|
|
|
|
2020-06-14 15:51:20 +02:00
|
|
|
# build translations.
|
2020-11-21 12:06:43 +01:00
|
|
|
#php ~/Sites/tools/firefly-iii-tools/cli.php ff3:json-translations --v2
|
2020-06-14 15:51:20 +02:00
|
|
|
|
|
|
|
# remove old stuff
|
|
|
|
rm -rf public/
|
|
|
|
rm -rf ../public/fonts
|
|
|
|
rm -rf ../public/v2/js
|
|
|
|
rm -rf ../public/v2/css
|
|
|
|
|
|
|
|
# build new stuff
|
2020-11-12 06:14:15 +01:00
|
|
|
yarn install
|
|
|
|
yarn audit fix
|
|
|
|
yarn upgrade
|
|
|
|
yarn prod
|
2020-06-14 15:51:20 +02:00
|
|
|
|
2020-11-12 06:14:15 +01:00
|
|
|
# yarn watch
|
2020-11-07 14:05:20 +01:00
|
|
|
|
2020-06-14 15:51:20 +02:00
|
|
|
# move to right directory
|
2020-06-17 07:06:45 +02:00
|
|
|
# mv public/js ../public/v2
|
|
|
|
# mv public/css ../public/v2
|
2020-06-14 15:51:20 +02:00
|
|
|
|
|
|
|
# also copy fonts
|
|
|
|
cp -r fonts ../public
|
2020-11-12 06:14:15 +01:00
|
|
|
|
|
|
|
# remove built stuff
|
|
|
|
rm -rf public
|