Skip to content

Commit 6672eb2

Browse files
jeanp413mustard-mh
authored andcommitted
Always enable proposed API
Tool: gitpod/catfood.gitpod.cloud
1 parent c84f9bd commit 6672eb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export class ExtensionsProposedApi {
3131

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

34-
this._envEnablesProposedApiForAll =
34+
this._envEnablesProposedApiForAll = true || // always enable proposed API
3535
!_environmentService.isBuilt || // always allow proposed API when running out of sources
3636
(_environmentService.isExtensionDevelopment && productService.quality !== 'stable') || // do not allow proposed API against stable builds when developing an extension
3737
(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)