Skip to content

Commit f22bc2c

Browse files
committed
[docs] Get sizes from new types folder
1 parent c225ef3 commit f22bc2c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

site/ui/BuildContext.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ const build = ((): Build => {
4040
forEachDirAndFile('./lib', null, (file) => {
4141
sizes.set(basename(file), statSync(file).size);
4242
});
43+
forEachDirAndFile('./lib/types', null, (file) => {
44+
sizes.set(basename(file), statSync(file).size);
45+
});
4346
forEachDirAndFile('./lib/debug', null, (file) => {
4447
sizes.set(`debug-${basename(file)}`, statSync(file).size);
4548
});

0 commit comments

Comments
 (0)