@ezetgalaxy/titan 25.12.9 → 25.13.0

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": "@ezetgalaxy/titan",
3
- "version": "25.12.9",
3
+ "version": "25.13.0",
4
4
  "description": "JavaScript backend framework that compiles your JS into a Rust + Axum server.",
5
5
  "license": "ISC",
6
6
  "author": "ezetgalaxy",
@@ -186,12 +186,12 @@ async fn dynamic_handler_inner(
186
186
  .into_response();
187
187
  }
188
188
 
189
- let action_path = state
190
- .project_root
191
- .join("server")
189
+ let action_path = state.project_root
192
190
  .join("actions")
193
191
  .join(format!("{}.jsbundle", action_name));
194
192
 
193
+
194
+
195
195
  if !action_path.exists() {
196
196
  return (
197
197
  StatusCode::NOT_FOUND,