Skip to content

Commit e9a61ce

Browse files
jeanp413Andrea Falzetti
authored andcommitted
Always enable proposed API
1 parent a205001 commit e9a61ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/services/extensions/common/abstractExtensionService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1469,7 +1469,7 @@ class ProposedApiController {
14691469

14701470
this._envEnabledExtensions = new Set((_environmentService.extensionEnabledProposedApi ?? []).map(id => ExtensionIdentifier.toKey(id)));
14711471

1472-
this._envEnablesProposedApiForAll =
1472+
this._envEnablesProposedApiForAll = true || // always enable proposed API
14731473
!_environmentService.isBuilt || // always allow proposed API when running out of sources
14741474
(_environmentService.isExtensionDevelopment && productService.quality !== 'stable') || // do not allow proposed API against stable builds when developing an extension
14751475
(this._envEnabledExtensions.size === 0 && Array.isArray(_environmentService.extensionEnabledProposedApi)); // always allow proposed API if --enable-proposed-api is provided without extension ID

0 commit comments

Comments
 (0)