We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eccec1 commit 4edfd25Copy full SHA for 4edfd25
lib/services/project-templates-service.ts
@@ -31,7 +31,7 @@ export class ProjectTemplatesService implements IProjectTemplatesService {
31
32
const templateName = constants.RESERVED_TEMPLATE_NAMES[name.toLowerCase()] || name;
33
if (!this.$fs.exists(templateName)) {
34
- version = version || await this.$npmInstallationManager.getLatestCompatibleVersion(templateName);
+ version = version || await this.$packageInstallationManager.getLatestCompatibleVersion(templateName);
35
}
36
37
const fullTemplateName = version ? `${templateName}@${version}` : templateName;
0 commit comments