You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: honor forced framework for Remix and Hydrogen (#5837)
* test: add check to see if all the frameworks honors forced framework
* fix: actually merge detections and not just pick up the most accurate one
* refactor: use single detection pass with remix and hydrogen
* fix: honor forced remix and hydrogen framework and allow detecting when config file is missing
@@ -140,11 +142,26 @@ export function sortFrameworksBasedOnAccuracy(a: DetectedFramework, b: DetectedF
140
142
returnsort
141
143
}
142
144
143
-
/** Merges a list of detection results based on accuracy to get the one with the highest accuracy */
145
+
/** Merges a list of detection results based on accuracy to get the one with the highest accuracy that still contains information provided by all other detections */
0 commit comments