travelynx/scripts/asset-rebuild

18 lines
402 B
Text
Raw Normal View History

2019-05-11 10:28:10 +00:00
#!/bin/sh
2023-06-24 16:36:59 +00:00
# Copyright (C) 2020 Birthe Friesel <derf@finalrewind.org>
2020-11-27 21:12:56 +00:00
#
# SPDX-License-Identifier: MIT
2019-05-11 10:28:10 +00:00
set -x
2020-12-13 20:51:59 +00:00
scripts/update-autocomplete
for theme in dark light; do
sassc -t compressed sass/src/${theme}/index.scss public/static/css/${theme}.min.css
done
2019-05-11 10:28:10 +00:00
for file in autocomplete geolocation travelynx-actions; do
uglifyjs public/static/js/${file}.js -c -m > public/static/js/${file}.min.js
done