@motiadev/core 0.9.1-beta.147-111979 → 0.9.1-beta.147-326333

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.
@@ -30,7 +30,7 @@ async def run_python_module(file_path: str) -> None:
30
30
  project_root = steps_dir.parent
31
31
  project_parent = project_root.parent
32
32
  if str(project_parent) not in sys.path:
33
- sys.path.append(str(project_parent))
33
+ sys.path.insert(0, str(project_parent))
34
34
 
35
35
  rel_parts = path.relative_to(project_parent).with_suffix("").parts
36
36
  module_name = ".".join(rel_parts)
@@ -31,7 +31,7 @@ async def run_python_module(file_path: str, rpc: RpcSender, args: Dict) -> None:
31
31
  project_root = steps_dir.parent
32
32
  project_parent = project_root.parent
33
33
  if str(project_parent) not in sys.path:
34
- sys.path.append(str(project_parent))
34
+ sys.path.insert(0, str(project_parent))
35
35
 
36
36
  rel_parts = path.relative_to(project_parent).with_suffix("").parts
37
37
  module_name = ".".join(rel_parts)
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@motiadev/core",
3
3
  "description": "Core functionality for the Motia framework, providing the foundation for building event-driven workflows.",
4
4
  "main": "dist/index.js",
5
- "version": "0.9.1-beta.147-111979",
5
+ "version": "0.9.1-beta.147-326333",
6
6
  "dependencies": {
7
7
  "@amplitude/analytics-node": "^1.3.8",
8
8
  "ajv": "^8.17.1",