From 5f21f73f73dce8900cbe8456944703cd2d01ae27 Mon Sep 17 00:00:00 2001 From: Greg Villicana <58237075+grvillic@users.noreply.github.com> Date: Fri, 1 Dec 2023 14:25:33 -0800 Subject: [PATCH] Promote NPM Lockfile v3 detector to run by default (#924) --- .../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;