fix(tsdockermanager): update project info loading to use the async ProjectInfo factory

This commit is contained in:
2026-05-08 13:40:20 +00:00
parent 56cf0c0f52
commit 302667305e
5 changed files with 40 additions and 158 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ export class TsDockerManager {
// Load project info
try {
const projectinfoInstance = new plugins.projectinfo.ProjectInfo(paths.cwd);
const projectinfoInstance = await plugins.projectinfo.ProjectInfo.create(paths.cwd);
this.projectInfo = {
npm: {
name: projectinfoInstance.npm.name,