2020-06-14 08:51:20 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# build translations.
|
|
|
|
php /sites/tools/firefly-iii-tools/cli.php ff3:json-translations --v2
|
|
|
|
|
|
|
|
# remove old stuff
|
|
|
|
rm -rf public/
|
|
|
|
rm -rf ../public/fonts
|
|
|
|
rm -rf ../public/v2/js
|
|
|
|
rm -rf ../public/v2/css
|
|
|
|
|
|
|
|
# build new stuff
|
2020-10-01 07:24:35 -05:00
|
|
|
npm install
|
|
|
|
npm audit fix
|
2020-06-29 01:04:38 -05:00
|
|
|
npm upgrade
|
2020-06-14 08:51:20 -05:00
|
|
|
npm run prod
|
|
|
|
|
|
|
|
# move to right directory
|
2020-06-17 00:06:45 -05:00
|
|
|
# mv public/js ../public/v2
|
|
|
|
# mv public/css ../public/v2
|
2020-06-14 08:51:20 -05:00
|
|
|
|
|
|
|
# also copy fonts
|
|
|
|
cp -r fonts ../public
|