mirror of
https://github.com/home-assistant/frontend.git
synced 2026-05-08 17:28:46 +01:00
1a66b8a374
* Add script to setup translation fetching * Update bootstrap
10 lines
174 B
Bash
Executable File
10 lines
174 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 |