mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
* rename frontend to web and update contributing guide * rename this time * fix build * restructure rust code * update documentation * update descriptions * Update CONTRIBUTING.md Co-authored-by: J H <2364004+Blu-J@users.noreply.github.com> --------- Co-authored-by: Aiden McClelland <me@drbonez.dev> Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> Co-authored-by: J H <2364004+Blu-J@users.noreply.github.com>
26 lines
822 B
Bash
Executable File
26 lines
822 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
set -e
|
|
|
|
rm -rf web/dist/static
|
|
|
|
if ! [[ "$ENVIRONMENT" =~ (^|-)dev($|-) ]]; then
|
|
find web/dist/raw -type f -not -name '*.gz' -and -not -name '*.br' | xargs -n 1 -P 0 gzip -kf
|
|
find web/dist/raw -type f -not -name '*.gz' -and -not -name '*.br' | xargs -n 1 -P 0 brotli -kf
|
|
|
|
for file in $(find web/dist/raw -type f -not -name '*.gz' -and -not -name '*.br'); do
|
|
raw_size=$(du $file | awk '{print $1 * 512}')
|
|
gz_size=$(du $file.gz | awk '{print $1 * 512}')
|
|
br_size=$(du $file.br | awk '{print $1 * 512}')
|
|
if [ $((gz_size * 100 / raw_size)) -gt 70 ]; then
|
|
rm $file.gz
|
|
fi
|
|
if [ $((br_size * 100 / raw_size)) -gt 70 ]; then
|
|
rm $file.br
|
|
fi
|
|
done
|
|
fi
|
|
|
|
cp -r web/dist/raw web/dist/static |