mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 20:26:08 +00: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:
@@ -275,7 +275,6 @@ export function packageLocalExtensionsStream(forWeb: boolean): Stream {
|
||||
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