mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-20 10:19:02 +00:00
Fix extension private prop mangling when compiling all extensions (#167626)
Fix extension private prop mangling when compiling all projects #167269 Re-applies previous commit with a fix for html's custom webpack logic
This commit is contained in:
@@ -61,7 +61,7 @@ module.exports = function () {
|
||||
output: `"${escapeText(lines.join('\n'))}"`
|
||||
});
|
||||
|
||||
strResult = `\nconst libs : { [name:string]: string; } = {\n`
|
||||
let strResult = `\nconst libs : { [name:string]: string; } = {\n`
|
||||
for (let i = result.length - 1; i >= 0; i--) {
|
||||
strResult += `"${result[i].name}": ${result[i].output},\n`;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user