1
mirror of https://github.com/home-assistant/frontend synced 2024-08-19 13:25:07 +02:00
ha-frontend/script/develop
Paulus Schoutsen 4d48a63141
Further simplify build (#1256)
* Remove manual copy

* Use Webpack to create gzip versions
2018-06-04 07:06:12 -04:00

20 lines
470 B
Bash
Executable File

#!/bin/sh
# Run the frontend development server
# Stop on errors
set -e
BUILD_DIR=build
OUTPUT_DIR=hass_frontend
OUTPUT_DIR_ES5=hass_frontend_es5
rm -rf $OUTPUT_DIR $OUTPUT_DIR_ES5 $BUILD_DIR
mkdir $OUTPUT_DIR $OUTPUT_DIR_ES5
# Needed in case frontend repo installed with pip3 install -e
cp -r public/__init__.py $OUTPUT_DIR_ES5/
./node_modules/.bin/gulp build-translations gen-icons
cp src/authorize.html $OUTPUT_DIR
./node_modules/.bin/webpack --watch --progress