Skip to content

Commit

Permalink
update name-too-long comment to length 109
Browse files Browse the repository at this point in the history
  • Loading branch information
ryandrew14 committed Jun 18, 2019
1 parent 6e16e12 commit 07dc833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/optimize/SplitChunksPlugin.js
Expand Up @@ -167,7 +167,7 @@ module.exports = class SplitChunksPlugin {
// Filenames and paths can't be too long otherwise an
// ENAMETOOLONG error is raised. If the generated name if too
// long, it is truncated and a hash is appended. The limit has
// been set to 100 to prevent `[name].[chunkhash].[ext]` from
// been set to 109 to prevent `[name].[chunkhash].[ext]` from
// generating a 256+ character string.
if (name.length > automaticNameMaxLength) {
const hashedFilename = hashFilename(name);
Expand Down

0 comments on commit 07dc833

Please sign in to comment.