mirror of
https://github.com/home-assistant/frontend.git
synced 2025-12-26 21:56:37 +00:00
18 lines
267 B
Bash
Executable File
18 lines
267 B
Bash
Executable File
#!/bin/sh
|
|
# Run the gallery
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
OUTPUT_DIR=dist
|
|
|
|
rm -rf $OUTPUT_DIR
|
|
|
|
cd ..
|
|
./node_modules/.bin/gulp build-translations gen-icons
|
|
cd gallery
|
|
|
|
NODE_ENV=production ../node_modules/.bin/webpack -p --config webpack.config.js
|