frontend/script/bootstrap
Bram Kragten 1a66b8a374
Add script to setup translation fetching (#14481)
* Add script to setup translation fetching

* Update bootstrap
2022-12-01 09:00:29 -05:00

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