Skip to content

Commit c9d50e5

Browse files
committed
fix: builds break due to larger phoenix bin size
1 parent 544fb55 commit c9d50e5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

gulpfile.js/validate-build.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const glob = require('glob');
2525

2626
// Size limits for development builds (in MB)
2727
const DEV_MAX_FILE_SIZE_MB = 6;
28-
const DEV_MAX_TOTAL_SIZE_MB = 90;
28+
const DEV_MAX_TOTAL_SIZE_MB = 100;
2929
// Custom size limits for known large files (size in MB) For development builds
3030
const LARGE_FILE_LIST_DEV = {
3131
'dist/thirdparty/no-minify/language-worker.js.map': 10,
@@ -37,7 +37,7 @@ const PROD_MAX_FILE_SIZE_MB = 2;
3737
const PROD_MAX_TOTAL_SIZE_MB = 70;
3838
// Custom size limits for known large files (size in MB) For staging/production builds
3939
const LARGE_FILE_LIST_PROD = {
40-
'dist/brackets.js': 9, // this is the full minified file itself renamed in prod
40+
'dist/brackets.js': 10, // this is the full minified file itself renamed in prod
4141
'dist/phoenix/virtualfs.js.map': 3
4242
};
4343

0 commit comments

Comments
 (0)