Skip to content

Commit

Permalink
chore(vscode-build) Try to debug what is going on with the breaking b…
Browse files Browse the repository at this point in the history
…uild
  • Loading branch information
Rheeseyb committed Aug 21, 2024
1 parent edcad2b commit ed2104e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions vscode-build/vscode.patch
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,20 @@ index 50c7e6fb631..06b6638c639 100644
task.define('bundle-marketplace-web-extensions-build', () => extensions.packageMarketplaceExtensionsStream(true).pipe(gulp.dest('.build/web'))),
task.define('bundle-web-extension-media-build', () => extensions.buildExtensionMedia(false, '.build/web/extensions')),
));
diff --git a/build/lib/extensions.ts b/build/lib/extensions.ts
index 0582e0cb11e..67136167697 100644
--- a/build/lib/extensions.ts
+++ b/build/lib/extensions.ts
@@ -138,7 +138,8 @@ function fromLocalWebpack(extensionPath: string, webpackConfigFileName: string,
return (Array.isArray(exportedConfig) ? exportedConfig : [exportedConfig]).map(config => {
const webpackConfig = {
...config,
- ...{ mode: 'production' }
+ ...{ mode: 'production' },
+ stats: 'verbose'
};
if (disableMangle) {
if (Array.isArray(config.module.rules)) {
diff --git a/extensions/css-language-features/server/test/linksTestFixtures/node_modules/foo/package.json b/extensions/css-language-features/server/test/linksTestFixtures/node_modules/foo/package.json
deleted file mode 100644
index 9e26dfeeb6e..00000000000
Expand Down

0 comments on commit ed2104e

Please sign in to comment.