@aiready/pattern-detect 0.7.0 → 0.7.1
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.
- package/dist/cli.js +2 -1
- package/dist/cli.mjs +2 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -512,7 +512,8 @@ program.name("aiready-patterns").description("Detect duplicate patterns in your
|
|
|
512
512
|
approx: finalOptions.approx,
|
|
513
513
|
minSharedTokens: finalOptions.minSharedTokens,
|
|
514
514
|
maxCandidatesPerBlock: finalOptions.maxCandidatesPerBlock,
|
|
515
|
-
streamResults:
|
|
515
|
+
streamResults: false
|
|
516
|
+
// Don't stream again for summary display
|
|
516
517
|
});
|
|
517
518
|
const elapsedTime = ((Date.now() - startTime) / 1e3).toFixed(2);
|
|
518
519
|
const summary = generateSummary(results);
|
package/dist/cli.mjs
CHANGED
|
@@ -78,7 +78,8 @@ program.name("aiready-patterns").description("Detect duplicate patterns in your
|
|
|
78
78
|
approx: finalOptions.approx,
|
|
79
79
|
minSharedTokens: finalOptions.minSharedTokens,
|
|
80
80
|
maxCandidatesPerBlock: finalOptions.maxCandidatesPerBlock,
|
|
81
|
-
streamResults:
|
|
81
|
+
streamResults: false
|
|
82
|
+
// Don't stream again for summary display
|
|
82
83
|
});
|
|
83
84
|
const elapsedTime = ((Date.now() - startTime) / 1e3).toFixed(2);
|
|
84
85
|
const summary = generateSummary(results);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiready/pattern-detect",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Semantic duplicate pattern detection for AI-generated code - finds similar implementations that waste AI context tokens",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|