1
mirror of https://github.com/home-assistant/frontend synced 2024-08-19 13:25:07 +02:00
ha-frontend/script/bootstrap
cdce8p 34ec3e0ae5 Fix yarn dev script (#1186)
* Fix yarn dev script

* Removed yarn dev

* Update bootstrap
2018-05-18 15:17:50 -04:00

11 lines
175 B
Bash
Executable File

#!/bin/sh
# Resolve all frontend dependencies that the application requires to develop.
# Stop on errors
set -e
cd "$(dirname "$0")/.."
# Install node modules
yarn install