@aiready/pattern-detect 0.17.6 → 0.17.8
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/CONTRIBUTING.md +1 -1
- package/package.json +5 -3
package/CONTRIBUTING.md
CHANGED
|
@@ -4,7 +4,7 @@ Thank you for your interest in contributing to AIReady Pattern Detection! We wel
|
|
|
4
4
|
|
|
5
5
|
## 🐛 Reporting Issues
|
|
6
6
|
|
|
7
|
-
Found a bug or have a feature request? [Open an issue](https://github.com/
|
|
7
|
+
Found a bug or have a feature request? [Open an issue](https://github.com/getaiready/aiready-pattern-detect/issues) with:
|
|
8
8
|
|
|
9
9
|
- Clear description of the problem or feature
|
|
10
10
|
- Sample code that demonstrates the issue
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiready/pattern-detect",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.8",
|
|
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",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"commander": "^14.0.0",
|
|
67
67
|
"chalk": "^5.3.0",
|
|
68
|
-
"@aiready/core": "0.24.
|
|
68
|
+
"@aiready/core": "0.24.8"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"tsup": "^8.3.5",
|
|
@@ -89,6 +89,8 @@
|
|
|
89
89
|
"test": "vitest run",
|
|
90
90
|
"lint": "eslint src",
|
|
91
91
|
"clean": "rm -rf dist",
|
|
92
|
-
"release": "pnpm build && pnpm publish --no-git-checks"
|
|
92
|
+
"release": "pnpm build && pnpm publish --no-git-checks",
|
|
93
|
+
"type-check": "tsc --noEmit",
|
|
94
|
+
"format-check": "prettier --check . --ignore-path ../../.prettierignore"
|
|
93
95
|
}
|
|
94
96
|
}
|