lexxit-automation-framework 3.0.6 → 3.0.7
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.
|
@@ -28,7 +28,8 @@ function error(msg) { console.log(`${COLORS.red}✖${COLORS.reset} ${msg}`); }
|
|
|
28
28
|
// ── Package root = one level up from /bin ──────────────────────────────────
|
|
29
29
|
const PKG_ROOT = path.join(__dirname, '..');
|
|
30
30
|
// const DIST_SERVER = path.join(PKG_ROOT, 'dist', 'server.js');
|
|
31
|
-
const DIST_SERVER = path.join(PKG_ROOT, 'dist-obf', 'server.js');
|
|
31
|
+
// const DIST_SERVER = path.join(PKG_ROOT, 'dist-obf', 'server.js');
|
|
32
|
+
const DIST_SERVER = path.join(PKG_ROOT, 'dist-obf', 'api', 'server.js');
|
|
32
33
|
const PID_FILE = path.join(os.tmpdir(), 'lexxit-automation-framework.pid');
|
|
33
34
|
const PORT = 5500;
|
|
34
35
|
|