disable extension mangling, (#204700)
workaround for https://github.com/microsoft/vscode/issues/204692pull/204705/head
parent
3a00525d5c
commit
cccd228808
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue