From 375c47cc054a9214c892b1b3927fe543abb20341 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotrek=20Koszuli=C5=84ski?= Date: Thu, 5 Jul 2018 15:38:57 +0200 Subject: [PATCH] Improved comments. --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index ad4dc61914..84108480da 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -30,13 +30,13 @@ module.exports = { optimization: { minimizer: [ - // Use the newest version of UglifyJsWebpackPlugin plugin that fixes `inline` optimization bug. + // Use the newest version of UglifyJsWebpackPlugin that fixes the `inline` optimization bug. // See https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues/264. new UglifyJsWebpackPlugin( { sourceMap: true, uglifyOptions: { output: { - // Preserve license comments starting with the exclamation mark (!). + // Preserve CKEditor 5 license comments. comments: /^!/ } }