mirror of
https://github.com/derf/travelynx
synced 2024-11-10 06:54:17 +00:00
15 lines
368 B
Bash
Executable file
15 lines
368 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Copyright (C) 2020 Birte Kristina Friesel <derf@finalrewind.org>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
set -x
|
|
|
|
for theme in dark light; do
|
|
sassc -t compressed sass/src/${theme}/index.scss public/static/css/${theme}.min.css
|
|
done
|
|
|
|
for file in geolocation travelynx-actions; do
|
|
uglifyjs public/static/js/${file}.js -c -m > public/static/js/${file}.min.js
|
|
done
|