mirror of
https://github.com/home-assistant/frontend.git
synced 2025-06-09 19:56:34 +00:00

* Gulpify build pipeline * Update build frontend script * Fixes * Limit service worker to latest build * Use shorthand * Fix hassio build
10 lines
137 B
Bash
Executable File
10 lines
137 B
Bash
Executable File
#!/bin/sh
|
|
# Builds the frontend for production
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
./node_modules/.bin/gulp build-release
|