final updates

This commit is contained in:
Developers Digest
2025-08-08 10:25:18 -04:00
parent da30371d48
commit 6081a9f50a
4 changed files with 29 additions and 58 deletions
+3 -3
View File
@@ -183,10 +183,10 @@ except Exception as e:
// Install only packages that aren't already installed
const packageList = packagesToInstall.join(' ');
// Only send the npm install command message if we're actually installing new packages
await sendProgress({
type: 'command',
command: `npm install ${packageList}`,
message: `Installing ${packagesToInstall.length} new package(s)...`
type: 'info',
message: `Installing ${packagesToInstall.length} new package(s): ${packagesToInstall.join(', ')}`
});
const installResult = await sandboxInstance.runCode(`