add asset-rebuild helper script

This commit is contained in:
Daniel Friesel 2019-05-11 12:28:10 +02:00
parent fcb01bddf7
commit 8e412e199c

7
scripts/asset-rebuild Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
set -x
for file in autocomplete geolocation travelynx-actions; do
uglifyjs public/static/js/${file}.js -c -m > public/static/js/${file}.min.js
done