mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 09:08:48 +01:00
web - move playground out of sources
We will consume the playground from https://github.com/microsoft/vscode-web-playground going forward.
This commit is contained in:
@@ -224,7 +224,6 @@ function packageLocalExtensionsStream(forWeb) {
|
||||
const extensionName = path.basename(extensionPath);
|
||||
return { name: extensionName, path: extensionPath, manifestPath: absoluteManifestPath };
|
||||
})
|
||||
.filter(({ name }) => (name === 'vscode-web-playground' ? forWeb : true)) // package vscode-web-playground only for web
|
||||
.filter(({ name }) => excludedExtensions.indexOf(name) === -1)
|
||||
.filter(({ name }) => builtInExtensions.every(b => b.name !== name))
|
||||
.filter(({ manifestPath }) => (forWeb ? isWebExtension(require(manifestPath)) : true)));
|
||||
|
||||
Reference in New Issue
Block a user