Skip to content

Fix missing files #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 22, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions build/gulpfile.vscode.server.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ const REPO_ROOT = path.dirname(__dirname);
const commit = util.getVersion(REPO_ROOT);
const BUILD_ROOT = path.dirname(REPO_ROOT);

// Put files here that need to be packaged that are not already in the entry
// points or included by the entry points. The optimize step bundles code into
// each entry point that imports it but more interestingly adding files here
// that would normally get bundled causes the bundling to fail resulting in
// "multiple top-level define" errors from the loader.
// Put files here that need to be packaged that are not entry points or imported
// by an entry point. The optimize step bundles each entry point into a single
// file and for some reason adding files here that would normally get bundled
// causes them (and their imports) not to get bundled. In the worst case this
// can cause multiple top-level define errors, other times it causes 404s.
const vscodeServerResources = [
// Bootstrap
'out-build/main.js',
Expand Down