mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-09 10:59:50 +00:00
10 lines
174 B
Bash
Executable File
10 lines
174 B
Bash
Executable File
#!/bin/sh
|
|
# Builds the frontend for production
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
node --import ./ts-node-register.js node_modules/gulp/bin/gulp.js build-app
|