mirror of
https://github.com/avatao-content/test-tutorial-framework
synced 2025-06-28 10:35:12 +00:00
Refactor frontend stuff to libhack/frontend.sh
This commit is contained in:
14
hack/libhack/frontend.sh
Normal file
14
hack/libhack/frontend.sh
Normal file
@ -0,0 +1,14 @@
|
||||
# Requires context:
|
||||
# - FRONTEND_PATH: absolute path of frontend repo
|
||||
# - CHALLENGE_PATH: absolute path of challenge repo
|
||||
|
||||
|
||||
frontend::run() {
|
||||
local frontend_in_challenge="${CHALLENGE_PATH}/solvable/frontend"
|
||||
if [[ "$(find "${frontend_in_challenge}" | wc -l)" -gt 2 ]];then
|
||||
cd "${frontend_in_challenge}"
|
||||
else
|
||||
cd "${FRONTEND_PATH}"
|
||||
fi
|
||||
yarn start
|
||||
}
|
Reference in New Issue
Block a user