Skip to content

Commit 4edfd25

Browse files
committed
chore: fix merge conflicts
1 parent 4eccec1 commit 4edfd25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/project-templates-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export class ProjectTemplatesService implements IProjectTemplatesService {
3131

3232
const templateName = constants.RESERVED_TEMPLATE_NAMES[name.toLowerCase()] || name;
3333
if (!this.$fs.exists(templateName)) {
34-
version = version || await this.$npmInstallationManager.getLatestCompatibleVersion(templateName);
34+
version = version || await this.$packageInstallationManager.getLatestCompatibleVersion(templateName);
3535
}
3636

3737
const fullTemplateName = version ? `${templateName}@${version}` : templateName;

0 commit comments

Comments
 (0)