From 07dc8330d05ad7e2a5b35397735630145052e807 Mon Sep 17 00:00:00 2001 From: Ryan Drew Date: Tue, 18 Jun 2019 10:29:09 -0400 Subject: [PATCH] update name-too-long comment to length 109 --- lib/optimize/SplitChunksPlugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/optimize/SplitChunksPlugin.js b/lib/optimize/SplitChunksPlugin.js index 3c73ceef5c4..6c2047f34f1 100644 --- a/lib/optimize/SplitChunksPlugin.js +++ b/lib/optimize/SplitChunksPlugin.js @@ -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);