mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 20:26:08 +00:00
disable extension mangling, (#204700)
workaround for https://github.com/microsoft/vscode/issues/204692
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user