Skip to content

Commit 262c878

Browse files
committed
Fixes bundling of billboard dependency
1 parent b3af2e9 commit 262c878

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "gitlens",
33
"displayName": "GitLens — Git supercharged",
44
"description": "Supercharge Git within VS Code — Visualize code authorship at a glance via Git blame annotations and CodeLens, seamlessly navigate and explore Git repositories, gain valuable insights via rich visualizations and powerful comparison commands, and so much more",
5-
"version": "16.3.0",
5+
"version": "2025.3.2820",
66
"engines": {
77
"node": ">= 22.12.0",
88
"pnpm": ">= 10.0.0",

webpack.config.mjs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -587,6 +587,11 @@ function getWebviewConfig(webviews, overrides, mode, env) {
587587
// Disable all non-async code splitting
588588
// chunks: () => false,
589589
cacheGroups: {
590+
billboard: {
591+
test: /[\\/]node_modules[\\/](billboard\.js)[\\/]/,
592+
filename: pathData => `lib-billboard-${pathData.chunk?.id ?? 'chunk'}.js`,
593+
chunks: 'async',
594+
},
590595
default: false,
591596
vendors: false,
592597
},

0 commit comments

Comments
 (0)