@svayam-opensource/prj 0.5.4 → 0.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@svayam-opensource/prj",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
4
  "description": "Governed Agentic Development Framework CLI (prj). A bash CLI wrapped for npm; operates on a governance workspace resolved via $ADF_WORKSPACE or the nearest org-config.yaml. Runtime prerequisites (not npm deps): bash, git, gh, yq, python3 (use Git Bash on Windows).",
5
5
  "bin": {
6
6
  "prj": "bin/prj"
@@ -33,8 +33,8 @@ _README_PIN_RE = re.compile(
33
33
  )
34
34
 
35
35
 
36
- def check_version_sync(repo_root: Path) -> list[str]:
37
- errors: list[str] = []
36
+ def check_version_sync(repo_root):
37
+ errors = []
38
38
 
39
39
  pkg_path = repo_root / "package.json"
40
40
  if not pkg_path.exists():