mirror of
https://github.com/home-assistant/frontend.git
synced 2026-05-14 20:20:22 +01:00
d243f2ead6
* Build a new Hass.io panel * Use webcomponents-lite.js * Compress new panel * Lint
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
|