core/scripts/build_frontend

25 lines
735 B
Plaintext
Raw Normal View History

2015-02-23 01:33:01 +00:00
# Builds the frontend for production
2015-02-09 07:33:19 +00:00
2015-01-17 22:32:33 +00:00
# If current pwd is scripts, go 1 up.
if [ ${PWD##*/} == "scripts" ]; then
cd ..
fi
cd homeassistant/components/frontend/www_static/home-assistant-polymer
npm install
npm run frontend_prod
2015-02-06 06:36:23 +00:00
cp bower_components/webcomponentsjs/webcomponents-lite.min.js ..
cp build/frontend.html ..
2014-11-12 08:36:20 +00:00
# Generate the MD5 hash of the new frontend
cd ../..
2015-01-30 16:26:06 +00:00
echo '""" DO NOT MODIFY. Auto-generated by build_frontend script """' > version.py
if [ $(command -v md5) ]; then
2015-01-30 16:26:06 +00:00
echo 'VERSION = "'`md5 -q www_static/frontend.html`'"' >> version.py
elif [ $(command -v md5sum) ]; then
2015-01-30 16:26:06 +00:00
echo 'VERSION = "'`md5sum www_static/frontend.html | cut -c-32`'"' >> version.py
else
echo 'Could not find an MD5 utility'
fi