We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dda49a commit 1c223a7Copy full SHA for 1c223a7
1 file changed
webpack/webpack.common.js
@@ -161,7 +161,7 @@ module.exports = env => {
161
const parsed = JSON.parse(content.toString());
162
if (env.browser.toLowerCase() === "safari") {
163
parsed.fullName.message = parsed.fullName.message.match(/^.+(?= [-–])/)?.[0] || parsed.fullName.message;
164
- if (parsed.fullName.message.length > 50) {
+ if (parsed.fullName.message.length > 40) {
165
parsed.fullName.message = parsed.fullName.message.slice(0, 47) + "...";
166
}
167
0 commit comments