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
@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@git.zone/tsdocker',
version: '2.2.5',
version: '2.2.6',
description: 'A comprehensive Docker build tool for TypeScript projects with multi-arch support, multi-registry push, and CI-safe session isolation.'
}
+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,