fix: Ignore semver range when upgrading comunity packages (#8863)
This commit is contained in:
@@ -320,7 +320,7 @@ export class CommunityPackagesService {
|
||||
) {
|
||||
const isUpdate = 'installedPackage' in options;
|
||||
const command = isUpdate
|
||||
? `npm update ${packageName}`
|
||||
? `npm install ${packageName}@latest`
|
||||
: `npm install ${packageName}${options.version ? `@${options.version}` : ''}`;
|
||||
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user