chore: address phase 7 review feedback

Co-authored-by: Eriyc <50216491+Eriyc@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-04 07:54:06 +00:00
parent 8cfc9af83d
commit 36c1beb4d7
2 changed files with 6 additions and 5 deletions

View File

@@ -3,7 +3,8 @@ set -euo pipefail
extension_file="$1"
grep -q 'bun_install = module_extension(' "${extension_file}"
grep -q 'tag_classes = {"install": _install}' "${extension_file}"
grep -q '"package_json": attr.string(mandatory = True)' "${extension_file}"
grep -q '"bun_lockfile": attr.string(mandatory = True)' "${extension_file}"
grep -Eq 'bun_install[[:space:]]*=[[:space:]]*module_extension\(' "${extension_file}"
grep -Eq 'tag_classes[[:space:]]*=[[:space:]]*\{"install":[[:space:]]*_install\}' "${extension_file}"
grep -Eq '"name":[[:space:]]*attr\.string\(mandatory[[:space:]]*=[[:space:]]*True\)' "${extension_file}"
grep -Eq '"package_json":[[:space:]]*attr\.string\(mandatory[[:space:]]*=[[:space:]]*True\)' "${extension_file}"
grep -Eq '"bun_lockfile":[[:space:]]*attr\.string\(mandatory[[:space:]]*=[[:space:]]*True\)' "${extension_file}"