11 lines
280 B
Bash
Executable file
11 lines
280 B
Bash
Executable file
#!/bin/sh
|
|
|
|
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 autocomplete geolocation travelynx-actions; do
|
|
uglifyjs public/static/js/${file}.js -c -m > public/static/js/${file}.min.js
|
|
done
|