1
0
forked from baron/baron-sso

코드체크 업데이트

This commit is contained in:
2026-05-12 13:41:43 +09:00
parent 5e649c279f
commit d4c48da426
32 changed files with 486 additions and 85 deletions

View File

@@ -17,6 +17,14 @@ for script in \
"./devfront/scripts/runtime-mode.sh" \
"./orgfront/scripts/runtime-mode.sh"
do
if ! grep -Fq "ensure_frontend_dependencies" "$script"; then
echo "script=$script must sync frontend dependencies before start" >&2
exit 1
fi
if ! grep -Fq "package-lock.json" "$script"; then
echo "script=$script must use package-lock.json for dependency sync" >&2
exit 1
fi
assert_mode "$script" "production" "production"
assert_mode "$script" "prod" "production"
assert_mode "$script" "stage" "production"