mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-23 04:47:19 +00:00
13 lines
201 B
Bash
Executable File
13 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
# Run the Hass.io development server
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
OUTPUT_DIR=build
|
|
|
|
rm -rf $OUTPUT_DIR
|
|
mkdir $OUTPUT_DIR
|
|
node script/gen-icons.js
|
|
../node_modules/.bin/webpack --watch --progress
|