@ezetgalaxy/titan 25.13.6 → 25.14.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.
Files changed (2) hide show
  1. package/index.js +2 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -189,9 +189,8 @@ function buildProd() {
189
189
  const appJs = path.join(root, "app", "app.js");
190
190
  const bundler = path.join(root, "titan", "bundle.js");
191
191
  const serverDir = path.join(root, "server");
192
- const builtActionsDir = path.join(root, "titan", "actions");
193
- const actionsOut = path.join(serverDir, "actions"); // FIX: define early
194
-
192
+ const builtActionsDir = path.join(root, "server", "actions");
193
+ const actionsOut = path.join(serverDir, "actions");
195
194
  // Ensure app/app.js exists
196
195
  if (!fs.existsSync(appJs)) {
197
196
  console.log(red("ERROR: app/app.js not found."));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ezetgalaxy/titan",
3
- "version": "25.13.6",
3
+ "version": "25.14.0",
4
4
  "description": "JavaScript backend framework that compiles your JS into a Rust + Axum server.",
5
5
  "license": "ISC",
6
6
  "author": "ezetgalaxy",