diff --git a/script/bootstrap_frontend b/script/bootstrap_frontend index 0efe2e3584d..d8338161e74 100755 --- a/script/bootstrap_frontend +++ b/script/bootstrap_frontend @@ -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 ../../../../..