From 6e6321cd97f524bd6630948e40f34ceb439f12e0 Mon Sep 17 00:00:00 2001 From: Yazid Date: Tue, 29 Sep 2020 16:41:24 -0400 Subject: [PATCH] Console warn on new line As mentioned here: https://github.com/johnagan/clean-webpack-plugin/issues/185 I dunno if you wanna do this everywhere or not (or not at all) up2u, thanks for a great plugin --- src/clean-webpack-plugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clean-webpack-plugin.ts b/src/clean-webpack-plugin.ts index 8ad2483..8c79f82 100644 --- a/src/clean-webpack-plugin.ts +++ b/src/clean-webpack-plugin.ts @@ -332,7 +332,7 @@ class CleanWebpackPlugin { */ // eslint-disable-next-line no-console console.warn( - `clean-webpack-plugin: ${message} ${filename}`, + `\nclean-webpack-plugin: ${message} ${filename}`, ); }); }