Paulus Schoutsen 09f238162e
Cleanup (#1575)
2018-08-21 08:59:54 +02:00

15 lines
243 B
Bash
Executable File

#!/bin/sh
# Builds the Hass.io app for production
# Stop on errors
set -e
cd "$(dirname "$0")/.."
OUTPUT_DIR=build
rm -rf $OUTPUT_DIR
node script/gen-icons.js
NODE_ENV=production ../node_modules/.bin/webpack -p --config webpack.config.js