15 lines
226 B
Bash
Executable File
15 lines
226 B
Bash
Executable File
#!/bin/sh
|
|
# Run the Hass.io development server
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
OUTPUT_DIR=build
|
|
|
|
rm -rf $OUTPUT_DIR
|
|
mkdir $OUTPUT_DIR
|
|
node script/gen-icons.js
|
|
../node_modules/.bin/webpack --watch --progress
|