mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-08 10:29:37 +00:00
* Gulpify build pipeline * Update build frontend script * Fixes * Limit service worker to latest build * Use shorthand * Fix hassio build
10 lines
132 B
Bash
Executable File
10 lines
132 B
Bash
Executable File
#!/bin/sh
|
|
# Run the frontend development server
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
./node_modules/.bin/gulp develop
|