Skip to content
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
6 changes: 5 additions & 1 deletion scripts/build-desktop-artifact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,11 @@ export const WINDOWS_SERVER_ASAR_IGNORE_GLOBS = [
"**/node_modules/.bin",
"**/node_modules/.bin/**",
] as const;
export const WINDOWS_PACKAGED_PAYLOAD_FILE_LIMIT = 80;
// A tripwire on payload bloat, not a hard budget: it catches an accidental
// node_modules tree or a stray source dir landing in the package. MT Code
// ships three alternate app icons on top of upstream's payload (the icon the
// user picks is applied to the running window), which is a deliberate +3.
export const WINDOWS_PACKAGED_PAYLOAD_FILE_LIMIT = 84;
export const WINDOWS_SERVER_RESOURCE_SOURCE_DIR = "apps/desktop/prod-resources/windows-server";
export const WINDOWS_SERVER_EXTRA_RESOURCES = [
{
Expand Down
Loading