We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85ad1cf commit b3ccd74Copy full SHA for b3ccd74
commands/utils/uploader.js
@@ -49,7 +49,7 @@ function upload_zip(lt_config, file_name, prefix = "project", env = "prod") {
49
let fileSizeInBytes = stats.size;
50
//Convert the file size to megabytes (optional)
51
let fileSizeInMegabytes = fileSizeInBytes / 1000000.0;
52
- if (fileSizeInMegabytes > 200) {
+ if (fileSizeInMegabytes > 400) {
53
reject("File Size exceed 200 MB limit");
54
return;
55
}
0 commit comments