From 9c4d2fe81ac3cd349010ee0d863e518bde692548 Mon Sep 17 00:00:00 2001 From: Lukas Gasselsberger | alu-one Date: Wed, 1 Jul 2026 13:35:42 +0200 Subject: [PATCH] Treat lower case `npm warn` also as warning --- src/Fallout.Common/Tools/Npm/NpmTasks.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Fallout.Common/Tools/Npm/NpmTasks.cs b/src/Fallout.Common/Tools/Npm/NpmTasks.cs index badac614e..942cba901 100644 --- a/src/Fallout.Common/Tools/Npm/NpmTasks.cs +++ b/src/Fallout.Common/Tools/Npm/NpmTasks.cs @@ -4,6 +4,6 @@ namespace Fallout.Common.Tools.Npm; -[LogLevelPattern(LogEventLevel.Warning, "^(npmWARN|npm WARN)")] +[LogLevelPattern(LogEventLevel.Warning, "^(npmWARN|npm WARN|npm warn)")] [LogLevelPattern(LogEventLevel.Debug, "^(npm notice)")] partial class NpmTasks;