mirror of
https://github.com/home-assistant/frontend.git
synced 2025-06-28 04:56:35 +00:00

* Generate hass icons * Generate Hass.io icons * Convert hass.io to use hassio iconset * Convert src to use hass iconset * Give mdi-icons a chunk name * gen-index-html aware of hass-icons * Use ha-icon for rendering state icon
14 lines
247 B
Bash
Executable File
14 lines
247 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 script/gen-icons.js
|
|
../node_modules/.bin/webpack --watch --progress
|