Ensure yarn packages are installed when running only LintUI

This commit is contained in:
Bogdan
2023-07-31 08:33:52 +03:00
parent 9ac9bd25c1
commit 263e807de2

View File

@@ -391,19 +391,18 @@ then
fi fi
fi fi
if [ "$LINT" = "YES" ]; if [[ "$LINT" = "YES" || "$FRONTEND" = "YES" ]];
then
if [ -z "$FRONTEND" ];
then then
YarnInstall YarnInstall
fi fi
if [ "$LINT" = "YES" ];
then
LintUI LintUI
fi fi
if [ "$FRONTEND" = "YES" ]; if [ "$FRONTEND" = "YES" ];
then then
YarnInstall
RunWebpack RunWebpack
fi fi