-
Notifications
You must be signed in to change notification settings - Fork 39.2k
More VS Code Onboarding TPI Fixes #309654
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
4fe2ba8
1c425f7
84c57e3
973d605
c6b7d69
5d89aa1
31c311d
4f49dbf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -74,6 +74,7 @@ export const vscodeWebResourceIncludes = [ | |
|
|
||
| // Welcome | ||
| 'out-build/vs/workbench/contrib/welcomeGettingStarted/common/media/**/*.{svg,png}', | ||
| 'out-build/vs/workbench/contrib/welcomeOnboarding/browser/media/*.svg', | ||
|
Comment on lines
75
to
+77
|
||
|
|
||
| // Extensions | ||
| 'out-build/vs/workbench/contrib/extensions/browser/media/{theme-icon.png,language-icon.svg}', | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding this glob fixes the legacy
bundle-vscode/minify-vscodepipeline, but the esbuild pipeline (build/next/index.ts bundle) has its own curated resource lists (desktopResourcePatterns, etc.) and currently does not includevs/workbench/contrib/welcomeOnboarding/browser/media/*.svg. IfuseEsbuildTranspileis enabled for packaging, these SVGs will still be missing. Please mirror this addition inbuild/next/index.tsso both build pipelines include the onboarding theme preview SVGs.