Skip to content

Commit

Permalink
increase size
Browse files Browse the repository at this point in the history
  • Loading branch information
TingDaoK committed Oct 10, 2024
1 parent c36a90f commit 8200bd8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .builder/actions/crt_size_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def run(self, env):
# Maximum package size (for current platform) in bytes
# NOTE: if you increase this, you might also need to increase the
# limit in continuous-delivery/pack.sh
max_size = 7_500_000
max_size = 8_000_000
# size of current folder
folder_size = 0
# total size in bytes
Expand Down Expand Up @@ -74,4 +74,5 @@ def run(self, env):

print(f"Total NPM package file size: {total_size} bytes")
if total_size > max_size:
raise Exception(f'NPM package exceeds size limit of {max_size} bytes.')
raise Exception(f'NPM package exceeds size limit of {
max_size} bytes.')

0 comments on commit 8200bd8

Please sign in to comment.