Skip to content

Commit

Permalink
disable extension mangling, (#204700)
Browse files Browse the repository at this point in the history
workaround for #204692
  • Loading branch information
jrieken authored Feb 8, 2024
1 parent 3a00525 commit cccd228
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions extensions/mangle-loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ module.exports = async function (source, sourceMap, meta) {
// Only enable mangling in production builds
return source;
}
if (true) {
// disable mangling for now, SEE https://github.com/microsoft/vscode/issues/204692
return source;
}
const options = this.getOptions();
if (options.disabled) {
// Dynamically disabled
Expand Down

0 comments on commit cccd228

Please sign in to comment.