@ezetgalaxy/titan 25.13.4 → 25.13.5
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 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
1
|
+
#!/usr/bin/env node
|
|
2
2
|
import fs from "fs";
|
|
3
3
|
import path from "path";
|
|
4
4
|
import { execSync, spawn } from "child_process";
|
|
@@ -202,7 +202,7 @@ function buildProd() {
|
|
|
202
202
|
const outDir = path.join(root, "server", "actions");
|
|
203
203
|
fs.mkdirSync(outDir, { recursive: true });
|
|
204
204
|
|
|
205
|
-
const builtActions = path.join(
|
|
205
|
+
const builtActions = path.join(root, "server", "actions");
|
|
206
206
|
|
|
207
207
|
if (fs.existsSync(builtActions)) {
|
|
208
208
|
for (const file of fs.readdirSync(builtActions)) {
|