@drocketxx/pm2me 1.1.32 → 1.1.34

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.
@@ -545,7 +545,7 @@ router.get('/deploy/:appId/logs', async (req, res) => {
545
545
  const appConfig = db.data.apps.find(a => a.id === appId);
546
546
  if (!appConfig) return res.status(404).json({ error: 'App not found' });
547
547
 
548
- const logFilePath = path.join(workspacesDir, `${appConfig.name}_deploy.log`);
548
+ const logFilePath = path.join(getWorkspacesDir(), `${appConfig.name}_deploy.log`);
549
549
  let logs = '';
550
550
 
551
551
  if (fs.existsSync(logFilePath)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drocketxx/pm2me",
3
- "version": "1.1.32",
3
+ "version": "1.1.34",
4
4
  "description": "PM2 Deployment and Management System — Web UI for PM2 process management",
5
5
  "type": "module",
6
6
  "main": "backend/app.js",