From db088ebc9853f538266b6a118c2e6428b6051d13 Mon Sep 17 00:00:00 2001 From: Greg Villicana Date: Fri, 1 Dec 2023 14:15:00 -0800 Subject: [PATCH] Promote NPM Lockfile v3 detector to run by default --- .../npm/NpmLockfile3Detector.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.ComponentDetection.Detectors/npm/NpmLockfile3Detector.cs b/src/Microsoft.ComponentDetection.Detectors/npm/NpmLockfile3Detector.cs index 974a281bc..57a5ecff6 100644 --- a/src/Microsoft.ComponentDetection.Detectors/npm/NpmLockfile3Detector.cs +++ b/src/Microsoft.ComponentDetection.Detectors/npm/NpmLockfile3Detector.cs @@ -1,4 +1,4 @@ -namespace Microsoft.ComponentDetection.Detectors.Npm; +namespace Microsoft.ComponentDetection.Detectors.Npm; using System.Collections.Generic; using System.Linq; @@ -7,7 +7,7 @@ using Microsoft.Extensions.Logging; using Newtonsoft.Json.Linq; -public class NpmLockfile3Detector : NpmLockfileDetectorBase, IExperimentalDetector +public class NpmLockfile3Detector : NpmLockfileDetectorBase { private static readonly string NodeModules = NpmComponentUtilities.NodeModules;