adelie-ai 0.3.7 → 0.3.8

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.
@@ -12,4 +12,4 @@ def _get_version() -> str:
12
12
  except Exception:
13
13
  pass
14
14
  return "0.0.0"
15
- __version__ = "0.3.7"
15
+ __version__ = "0.3.8"
@@ -275,7 +275,7 @@ def run_tests(
275
275
  if ext in (".ts", ".tsx", ".jsx"):
276
276
  # TypeScript/JSX: use npx tsx to execute directly
277
277
  # (vitest's include patterns conflict with Tester AI naming)
278
- run_cmd = f'npx tsx "{script_path}"'
278
+ run_cmd = f'npx -y tsx "{script_path}"'
279
279
  else:
280
280
  run_cmd = f'node "{script_path}"'
281
281
  else:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adelie-ai",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "description": "Adelie — Self-Communicating Autonomous AI Loop CLI",
5
5
  "bin": {
6
6
  "adelie": "bin/adelie.js"