15 lines
252 B
Bash
Executable File
15 lines
252 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 CI=false ../node_modules/.bin/webpack -p --config webpack.config.js
|