@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.
- package/index.js +2 -3
- 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, "
|
|
193
|
-
const actionsOut = path.join(serverDir, "actions");
|
|
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."));
|