Skip to content
Draft
Changes from 1 commit
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
Prev Previous commit
Next Next commit
increase bundle size max because lodash
  • Loading branch information
Anemy committed Jan 1, 2024
commit 3adfa15b13a1b11b18fc79a6f404ce4be2cac930
2 changes: 1 addition & 1 deletion scripts/check-vsix-size.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const vsixFileName = path.resolve(
);
const size = fs.statSync(vsixFileName).size;

const maxSize = 8 * 1000000; // 8 MB
const maxSize = 8.5 * 1000000; // 8.5 MB

if (size >= maxSize) {
throw new Error(
Expand Down