Archived
1
0

Move login page to browser directory

Fixes it not being included in the optimized build as well as making it
more consistent.
This commit is contained in:
Asher
2019-10-21 14:54:32 -05:00
parent 76f6ff4145
commit ece840834d
4 changed files with 4 additions and 3 deletions

View File

@ -261,7 +261,7 @@ class Builder {
fs.remove(path.join(finalServerPath, "node_modules")).then(() => {
return fs.copy(path.join(serverPath, "node_modules"), path.join(finalServerPath, "node_modules"));
}),
fs.copy(path.join(serverPath, "src/browser/workbench-build.html"), path.join(finalServerPath, "src/browser/workbench.html")),
fs.copy(path.join(finalServerPath, "src/browser/workbench-build.html"), path.join(finalServerPath, "src/browser/workbench.html")),
]);
}),
]);

View File

@ -24,6 +24,7 @@ const vscodeResources = [
"out-build/vs/server/src/node/uriTransformer.js",
"!out-build/vs/server/doc/**",
"out-build/vs/code/browser/workbench/**",
"out-build/vs/server/src/browser/*.html",
"out-build/vs/server/src/media/*",
"out-build/vs/workbench/services/extensions/worker/extensionHostWorkerMain.js",
"out-build/bootstrap.js",