fix(tsdockermanager): update project info loading to use the async ProjectInfo factory
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user