Skip to content

Commit

Permalink
Merge pull request #23 from percy/filesize
Browse files Browse the repository at this point in the history
Increase max resource file size to 15MiB.
  • Loading branch information
fotinakis authored Mar 21, 2017
2 parents 7e92c23 + 4bdbc6f commit c603f9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var SKIPPED_ASSETS = [
/\.log$/,
/\.DS_Store$/
];
var MAX_FILE_SIZE_BYTES = 5242880; // 5MB.
var MAX_FILE_SIZE_BYTES = 15728640; // 15MB.

// Synchronously walk the build directory, read each file and calculate its SHA 256 hash,
// and create a mapping of hashes to Resource objects.
Expand Down

0 comments on commit c603f9d

Please sign in to comment.