File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { tmpdir } from "node:os";
44import { fileURLToPath } from "node:url" ;
55
66// Auto-updated by scripts/pack.ts
7- const codeArchiveHash = "942fda1d11e62766 " ;
7+ const codeArchiveHash = "8e9eb27319d3a38c " ;
88
99const archivePath = fileURLToPath ( new URL ( "./code.tar.zst" , import . meta. url ) ) ;
1010
Original file line number Diff line number Diff line change @@ -22,6 +22,9 @@ const excludeDirPaths = new Set(["katex/src"]);
2222const excludeFilePaths = new Set ( [
2323 "@vscode/tree-sitter-wasm/wasm/tree-sitter-c-sharp.wasm" ,
2424 "@vscode/tree-sitter-wasm/wasm/tree-sitter-ruby.wasm" ,
25+ // Native MSAL broker (Linux-only ELF); extension falls back to browser OAuth when missing.
26+ "code-server/lib/vscode/extensions/microsoft-authentication/dist/libmsalruntime.so" ,
27+ "code-server/lib/vscode/extensions/microsoft-authentication/dist/msal-node-runtime.node" ,
2528] ) ;
2629const excludeExts = new Set ( [ ".d.ts" , ".map" , ".mp3" ] ) ;
2730const excludeNameRe = / ^ ( r e a d m e ( \. m d ) ? | l i c e n s e ( \. m d | \. t x t ) ? | r e l e a s e s \. m d | s e c u r i t y \. m d | c h a n g e l o g \. m d | s u p p o r t \. m d | c o d e _ o f _ c o n d u c t \. m d | a u t h o r s \. m d ) $ / i;
@@ -31,6 +34,8 @@ const tarExcludes = [
3134 "node_modules/katex/src" ,
3235 "node_modules/@vscode/tree-sitter-wasm/wasm/tree-sitter-c-sharp.wasm" ,
3336 "node_modules/@vscode/tree-sitter-wasm/wasm/tree-sitter-ruby.wasm" ,
37+ "node_modules/code-server/lib/vscode/extensions/microsoft-authentication/dist/libmsalruntime.so" ,
38+ "node_modules/code-server/lib/vscode/extensions/microsoft-authentication/dist/msal-node-runtime.node" ,
3439 "*.map" ,
3540 "*.mp3" ,
3641 "README.md" ,
You can’t perform that action at this time.
0 commit comments