mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-24 12:49:19 +00:00
13 lines
222 B
Bash
Executable File
13 lines
222 B
Bash
Executable File
#!/bin/sh
|
|
# Run the Hass.io development server
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
OUTPUT_DIR_ES5=build-es5
|
|
|
|
rm -rf $OUTPUT_DIR_ES5
|
|
mkdir $OUTPUT_DIR_ES5
|
|
node script/gen-index-html.js
|
|
../node_modules/.bin/webpack --watch --progress
|