@buoy-design/core 0.1.11 → 0.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -92,7 +92,7 @@ export function groupPatterns(occurrences, matching = "exact") {
92
92
  * Detect repeated patterns and generate drift signals.
93
93
  */
94
94
  export function detectRepeatedPatterns(occurrences, options = {}) {
95
- const { minOccurrences = 3, matching = "exact" } = options;
95
+ const { minOccurrences = 2, matching = "exact" } = options;
96
96
  const groups = groupPatterns(occurrences, matching);
97
97
  const drifts = [];
98
98
  for (const [pattern, locations] of groups) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@buoy-design/core",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Core domain models and analysis for Buoy design drift detection",
5
5
  "type": "module",
6
6
  "license": "MIT",