Run initial generation for development mode (#9826)

* Run initial generation for development mode

* Use yarn dev
This commit is contained in:
Adam Mills 2017-10-13 00:56:38 -04:00 committed by Paulus Schoutsen
parent 2c1f0f3449
commit 8d83912649

View File

@ -8,7 +8,7 @@ cd "$(dirname "$0")/.."
echo "Bootstrapping frontend..."
git submodule update
git submodule update --init
cd homeassistant/components/frontend/www_static/home-assistant-polymer
# Install node modules
@ -17,4 +17,7 @@ yarn install
# Install bower web components. Allow to download the components as root since the user in docker is root.
./node_modules/.bin/bower install --allow-root
# Build files that need to be generated to run development mode
yarn dev
cd ../../../../..