mirror of
https://github.com/microsoft/vscode.git
synced 2026-06-01 05:04:59 +01:00
Build: bundle / concat entry points (#161161)
* perf - concatenate windows main files * Revert "Revert "Use `esbuild` to bundle some CommonJS main files (#160957)" (#161118)" This reverts commit84c46b71a5. * build - exclude server main files * build - make concat a task that runs like the others * some renames * Avoid overwriting the nodejs closure require * Revert "build - exclude server main files" This reverts commit736516624e. Co-authored-by: Alex Dima <alexdima@microsoft.com>
This commit is contained in:
@@ -334,7 +334,7 @@ export async function main(argv: string[]): Promise<any> {
|
||||
return false;
|
||||
}
|
||||
if (target.type === 'page') {
|
||||
return target.url.indexOf('workbench/workbench.html') > 0;
|
||||
return target.url.indexOf('workbench/workbench.html') > 0 || target.url.indexOf('workbench/workbench-dev.html') > 0;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user