mirror of
https://github.com/home-assistant/frontend.git
synced 2026-02-15 07:25:54 +00:00
* Add demo * Fix stuff * Lint * Typescript and demo card * More fixes * Allow switching through configs * Lint * Lint2 * Add two demo configs * Lint * Lint
14 lines
196 B
Bash
Executable File
14 lines
196 B
Bash
Executable File
#!/bin/sh
|
|
# Develop the demo
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
cd ..
|
|
DEMO=1 ./node_modules/.bin/gulp build-translations gen-icons
|
|
cd demo
|
|
|
|
../node_modules/.bin/webpack-dev-server
|